* eigen2->eigen3

* bump version to 2.91.0
* add FindEigen3.cmake
This commit is contained in:
Benoit Jacob
2009-11-19 12:09:04 -05:00
parent abb2a1bb15
commit b5f4636d42
12 changed files with 104 additions and 41 deletions

View File

@@ -36,7 +36,7 @@ In order to use Eigen, you just need to download and extract Eigen's source code
Here are some quick compilation instructions with GCC. To quickly test an example program, just do
\code g++ -I /path/to/eigen2/ my_program.cpp -o my_program \endcode
\code g++ -I /path/to/eigen/ my_program.cpp -o my_program \endcode
There is no library to link to. For good performance, add the \c -O2 compile-flag. Note however that this makes it impossible to debug inside Eigen code, as many functions get inlined. In some cases, performance can be further improved by disabling Eigen assertions: use \c -DEIGEN_NO_DEBUG or \c -DNDEBUG to disable them.