aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/CMakeLists.txt
Commit message (Collapse)AuthorAge
* rename the EigenSolver module to EigenvaluesGravatar Gael Guennebaud2009-09-04
|
* move eigen values related stuff of the QR module to a new EigenSolver module.Gravatar Gael Guennebaud2009-09-03
| | | | | - perhaps we can find a better name ? - note that the QR module still includes the EigenSolver module for compatibility
* fix installation for recently added filesGravatar Thomas Capricelli2009-08-25
|
* Add COMPONENT DevelGravatar Laurent Montel2009-02-23
|
* setup the unsupported directory structure.Gravatar Gael Guennebaud2009-02-04
| | | | | | | | The unsupported module documentation is automatically generated in: build/doc/unsupported/ with bidirectional cross references. I leave a class Foo in AdolcForward module to illustrate the cross-reference behavior. I will remove it in the next commit.
* * mark Geometry as experimentalGravatar Benoit Jacob2009-01-26
| | | | | | | * install QtAlignedMalloc * finish the renaming Regression->LeastSquares * install LeastSquares directory (!!!) * misc dox fixes
* * clarify the situation with experimental partsGravatar Benoit Jacob2009-01-19
| | | | * remove all what was marked deprecated
* Based on code + help from Alex Stapleton:Gravatar Benoit Jacob2009-01-09
| | | | | | | | | | | *Add Eigen/StdVector header. Including it #includes<vector> and "Core" and generates a partial specialization of std::vector<T> for T=Eigen::Matrix<...> that will work even with vectorizable fixed-size Eigen types (working around a design issue in the c++ STL) *Add unit-test CCMAIL: alex.stapleton@gmail.com
* forgot to install the LeastSquares headerGravatar Benoit Jacob2009-01-05
|
* prefix all Eigen cmake variable with EIGEN_ and switched to lowercase for ↵Gravatar Gael Guennebaud2008-12-02
| | | | all cmake files
* CoreDeclarations was removedGravatar Jure Repinc2008-08-28
|
* forgot to install Regression public headerGravatar Benoit Jacob2008-08-24
|
* * Fix CMakeLists.txt issue with SVDGravatar Gael Guennebaud2008-08-20
| | | | * Fix on stack memory allocation issues
* *make Eigen2 install to prefix/include/eigen2/EigenGravatar Benoit Jacob2008-08-16
| | | | *Add FindEigen2.cmake module in kdelibs
* * 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"