After fixing bug #1557, boostmultiprec_7 failed with NumericalIssue instead of NoConvergence (all that matters here is no Success)

(grafted from d575505d2589877a9d712feb0d455704d3834f12
)
This commit is contained in:
Christoph Hertzberg 2019-01-17 19:14:07 +01:00
parent c7266da750
commit 7b160dcc82

View File

@ -67,7 +67,7 @@ template<typename MatrixType> void eigensolver(const MatrixType& m)
// Test matrix with NaN
a(0,0) = std::numeric_limits<typename MatrixType::RealScalar>::quiet_NaN();
EigenSolver<MatrixType> eiNaN(a);
VERIFY_IS_EQUAL(eiNaN.info(), NoConvergence);
VERIFY_IS_NOT_EQUAL(eiNaN.info(), Success);
}
// regression test for bug 1098