det(NaN) crashes with MKL enabled
Determinant with matrix without NaN as expected but if an NaN is in matrix. It crashs !!
Tested on Windows with 3.3.8 (VS 16.8.0)
Eigen::Map<Eigen::Matrix<double, Eigen::Dynamic, Eigen::Dynamic>> matA(
(double*)A.getDataPointer(), dimsA.getRows(), dimsA.getColumns());
double R = matA.determinant();
Current workaround is to check hasNaN() (slower) but it will be maybe better to return expected value NaN.