Sign in
nest-open-source
/
nest-cam
/
v350
/
eigen
/
9d75fdbcd2b5a2fdab03a859ddefda95ce1217ed
/
.
/
failtest
/
ldlt_int.cpp
blob: 243e457468cf6e2b50c849a32853b7c6f46b4e72 [
file
] [
log
] [
blame
]
#include
"../Eigen/Cholesky"
#ifdef
EIGEN_SHOULD_FAIL_TO_BUILD
#define
SCALAR
int
#else
#define
SCALAR
float
#endif
using
namespace
Eigen
;
int
main
()
{
LDLT
<
Matrix
<
SCALAR
,
Dynamic
,
Dynamic
>
>
ldlt
(
Matrix
<
SCALAR
,
Dynamic
,
Dynamic
>::
Random
(
10
,
10
));
}