aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/CMakeLists.txt
Commit message (Collapse)AuthorAge
* * added a lazyAssign overload skipping .lazy() such that c = (<xpr>).lazy() ↵Gravatar Gael Guennebaud2008-07-09
| | | | | | such that lazyAssign overloads of <xpr> are automatically called (this also reduces assign instansiations)
* * update CMakeLists, only build instantiations if TEST_LIB is definedGravatar Benoit Jacob2008-06-27
| | | | | * allow default Matrix constructor in dynamic size, defaulting to (1, 1), this is convenient in mandelbrot example.
* Add QR and Cholesky module instantiations in the lib.Gravatar Gael Guennebaud2008-06-14
| | | | To try it with the unit tests set the cmake variable TEST_LIB to ON.
* Added the computation of eigen vectors in the symmetric eigen solver.Gravatar Gael Guennebaud2008-06-02
| | | | | However the eigen vectors are not correct yet, but I really cannot find the problem.
* added an *optional* Eigen2 dynamic library.Gravatar Gael Guennebaud2008-05-31
| | | | | it allows the possiblity to save some compilation time by linking to it *and* defining the token EIGEN_EXTERN_INSTANCIATIONS
* -fix certain #includesGravatar Benoit Jacob2008-05-12
| | | | -fix CMakeLists, public headers weren't getting installed
* part 2 of the reorganization. Benefits/changes:Gravatar Benoit Jacob2007-12-28
| | | | | | 1) Eigen2 co-installable with Eigen1 without conflict, without affecting programs including either. 2) #include<Eigen/Core> without the .h without conflict with the Core/ directory 3) Uniformize coding style of the CMakeLists.
* 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"