Skip to content

Commit

Permalink
Fixed minimal version of Eigen3 that supports sparse matrices
Browse files Browse the repository at this point in the history
  • Loading branch information
lisitsyn authored and karlnapf committed May 13, 2013
1 parent 255beac commit f8dba51
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/shogun/lib/tapkee/tapkee_defines.hpp
Expand Up @@ -30,7 +30,7 @@
#define EIGEN_RUNTIME_NO_MALLOC
#include <Eigen/Eigen>
#include <Eigen/Dense>
#if EIGEN_VERSION_AT_LEAST(3,1,0)
#if EIGEN_VERSION_AT_LEAST(3,0,93)
#include <Eigen/Sparse>
#if defined(TAPKEE_SUPERLU_AVAILABLE) && defined(TAPKEE_USE_SUPERLU)
#include <Eigen/SuperLUSupport>
Expand Down
2 changes: 1 addition & 1 deletion src/shogun/mathematics/eigen3.h
Expand Up @@ -16,7 +16,7 @@
//#define EIGEN_RUNTIME_NO_MALLOC
#include <Eigen/Eigen>
#include <Eigen/Dense>
#if EIGEN_VERSION_AT_LEAST(3,1,0)
#if EIGEN_VERSION_AT_LEAST(3,0,93)
#include <Eigen/Sparse>
#else
#define EIGEN_YES_I_KNOW_SPARSE_MODULE_IS_NOT_STABLE_YET
Expand Down

0 comments on commit f8dba51

Please sign in to comment.