aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/Core/Map.h
Commit message (Collapse)AuthorAge
* move Core/ to a src/ subdir, in preparation for following changesGravatar Benoit Jacob2007-12-28
|
* matrix storage order can now also be row-dominant (choosable for each matrix ↵Gravatar Benoit Jacob2007-12-27
| | | | | | | separately) map() moves from MatrixBase to Matrix much more documentation/examples/snippets
* - eigen2 now fully enforces constness! found a way to achieve thatGravatar Benoit Jacob2007-12-25
| | | | | | | | with minimal code duplication. There now are only two (2) const_cast remaining in the whole source code. - eigen2 now fully allows copying a row-vector into a column-vector. added a unit-test for that. - split unit tests, improve docs, various improvements.
* rename src/ to Eigen/ so that we're able to #include<Eigen/Core.h>Gravatar Benoit Jacob2007-12-20
in the examples instead of ugly things like #include"../../src/Core.h"