aboutsummaryrefslogtreecommitdiffhomepage
path: root/CMakeLists.txt
Commit message (Collapse)AuthorAge
* 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"
* play with inlining to get better performance when the compiler is not asked ↵Gravatar Benoit Jacob2007-12-11
| | | | to optimize
* Fix damage done by automatic search-and-replaceGravatar Benoit Jacob2007-11-25
|
* Democracy 1 - 0 DictatorshipGravatar Benoit Jacob2007-10-11
| | | | | | | | | | | | | | | | | | | | | After huge thread on eigen mailing list, it appears that i'm the only one in favor of prefix Ei. Everybody else prefers namespace Eigen like we did in Eigen 1. So, revert. Also add a macro USING_EIGEN_DATA_TYPES that application programmers can use to automatically do "using"on the Matrix class and its matrix/vector typedefs: using Eigen::Matrix; using Eigen::Matrix2d; using Eigen::Vector2d; ... (the list of typedefs is really long). thanks to the suffixes, the Vector typedefs aren't really polluting. CCMAIL:eigen@lists.tuxfamily.org P.S. Danny, please skip this one :) I know you already reported the namespace->prefix move, now that one would be too much noise :)
* make matrix multiplication do immediate evaluation; add lazyMul() for the ↵Gravatar Benoit Jacob2007-09-29
| | | | | | | old behaviour some reorganization, especially in MatrixStorage start playing with loop unrolling, always_inline, and __restrict__
* add operator *= between matrices, with automatic aliasing.Gravatar Benoit Jacob2007-09-07
| | | | add tutorial in doc/ subdirectory.
* add a missing operator= for copying a matrix into an expression.Gravatar Benoit Jacob2007-09-05
|
* Hello, World!Gravatar Benoit Jacob2007-09-05
| | | | This is the initial commit for Eigen2, since I restarted it from scratch on Sunday.
* restart Eigen2 development from scratch.Gravatar Benoit Jacob2007-09-01
|
* more cmake improvements; start removing the autotools stuff.Gravatar Benoit Jacob2007-06-07
|
* More cleanup, add CMakeLists for the testsuite. Now need to port itGravatar Benoit Jacob2007-05-31
| | | | to QTestLib :/
* Convert 5 m4 checks to cmake modulesGravatar Benoit Jacob2007-05-30
|
* add initial CMakeListsGravatar Benoit Jacob2007-05-30