eigen/Eigen
Benoit Jacob 1b88042880 the empty base class optimization is not standard. Most compilers implement a basic form of it; however MSVC won't implement it if there is more than one empty base class.
For that reason, we shouldn't give Matrix two empty base classes, since sizeof(Matrix) must be optimal.
So we overload operator new and delete manually rather than inheriting an empty struct for doing that.
2009-01-05 16:46:19 +00:00
..
src the empty base class optimization is not standard. Most compilers implement a basic form of it; however MSVC won't implement it if there is more than one empty base class. 2009-01-05 16:46:19 +00:00
Array Patch by Kenneth Riddile: disable MSVC warnings, reenable them outside 2008-12-18 20:48:02 +00:00
Cholesky Patch by Kenneth Riddile: disable MSVC warnings, reenable them outside 2008-12-18 20:48:02 +00:00
CMakeLists.txt prefix all Eigen cmake variable with EIGEN_ and switched to lowercase for all cmake files 2008-12-02 12:59:10 +00:00
Core Patch by Kenneth Riddile: disable MSVC warnings, reenable them outside 2008-12-18 20:48:02 +00:00
Geometry Patch by Kenneth Riddile: disable MSVC warnings, reenable them outside 2008-12-18 20:48:02 +00:00
LeastSquares rename Regression --> LeastSquares 2009-01-04 15:55:54 +00:00
LU Patch by Kenneth Riddile: disable MSVC warnings, reenable them outside 2008-12-18 20:48:02 +00:00
QR Patch by Kenneth Riddile: disable MSVC warnings, reenable them outside 2008-12-18 20:48:02 +00:00
Regression rename Regression --> LeastSquares 2009-01-04 15:55:54 +00:00
Sparse Added a SparseVector class (not tested yet) 2009-01-02 08:47:09 +00:00
SVD Patch by Kenneth Riddile: disable MSVC warnings, reenable them outside 2008-12-18 20:48:02 +00:00