Skip to content

Commit

Permalink
After fixing Bug 1557, boostmultiprec_7 failed with NumericalIssue in…
Browse files Browse the repository at this point in the history
…stead of NoConvergence (all that matters here is no Success)

(grafted from b9073cad7f047b0f9f747a36018f9973673d738a)
  • Loading branch information
chhtz committed Jan 17, 2019
1 parent f65b4ab commit 29b0b21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/eigensolver_generic.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 29b0b21

Please sign in to comment.