mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-08-13 20:26:03 +08:00
After fixing bug #1557, boostmultiprec_7 failed with NumericalIssue instead of NoConvergence (all that matters here is no Success)
This commit is contained in:
parent
ee3662abc5
commit
d575505d25
@ -76,7 +76,7 @@ template<typename MatrixType> void eigensolver(const MatrixType& m)
|
|||||||
// Test matrix with NaN
|
// Test matrix with NaN
|
||||||
a(0,0) = std::numeric_limits<typename MatrixType::RealScalar>::quiet_NaN();
|
a(0,0) = std::numeric_limits<typename MatrixType::RealScalar>::quiet_NaN();
|
||||||
EigenSolver<MatrixType> eiNaN(a);
|
EigenSolver<MatrixType> eiNaN(a);
|
||||||
VERIFY_IS_EQUAL(eiNaN.info(), NoConvergence);
|
VERIFY_IS_NOT_EQUAL(eiNaN.info(), Success);
|
||||||
}
|
}
|
||||||
|
|
||||||
// regression test for bug 1098
|
// regression test for bug 1098
|
||||||
|
Loading…
x
Reference in New Issue
Block a user