Sparse module: bugfix in SparseMatrix::resize(), now the indices are

correctly initialized to 0.
This commit is contained in:
Gael Guennebaud
2009-01-15 13:30:50 +00:00
parent 96e1e582ff
commit 87241089e1
4 changed files with 21 additions and 16 deletions

View File

@@ -23,8 +23,14 @@
// License and a copy of the GNU General Public License along with
// Eigen. If not, see <http://www.gnu.org/licenses/>.
#ifndef EIGEN_NO_STATIC_ASSERT
#define EIGEN_NO_STATIC_ASSERT // turn static asserts into runtime asserts in order to check them
#endif
#ifndef EIGEN_DONT_VECTORIZE
#define EIGEN_DONT_VECTORIZE // SSE intrinsics aren't designed to allow mixing types
#endif
#include "main.h"