Files
eigen/Eigen
Benoit Jacob 527557672a disable the assembly for fast unaligned stores. indeed, there is a strange bug that is triggered by this code:
#include<Eigen/Core>

int main()
{
  Eigen::Matrix4f m;
  m <<1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16;
  m.col(0).swap(m.col(1));
  std::cout << m << std::endl;
}

when the fast unaligned stores are used, the column is copied instead of being swapped.
2009-08-09 20:49:55 +02:00
..
2009-06-10 11:20:30 +02:00
2009-02-23 07:50:56 +00:00
2009-08-06 12:20:02 +02:00
2009-06-19 19:09:35 +02:00
2009-06-19 20:46:55 +02:00
2009-08-03 16:06:57 +02:00
2009-08-09 16:58:13 +02:00
2009-05-13 02:02:22 +00:00
2009-07-20 13:27:41 +02:00
2009-08-09 16:58:13 +02:00