mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-03 06:50:57 +08:00
15 lines
259 B
C++
15 lines
259 B
C++
|
#include "../Eigen/Eigenvalues"
|
||
|
|
||
|
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
|
||
|
#define SCALAR int
|
||
|
#else
|
||
|
#define SCALAR float
|
||
|
#endif
|
||
|
|
||
|
using namespace Eigen;
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
EigenSolver<Matrix<SCALAR,Dynamic,Dynamic> > eig(Matrix<SCALAR,Dynamic,Dynamic>::Random(10,10));
|
||
|
}
|