Skip to content
Snippets Groups Projects
Commit 9460750d authored by Oliver Sander's avatar Oliver Sander Committed by sander@FU-BERLIN.DE
Browse files

disable signalling on NaN

[[Imported from SVN: r7411]]
parent f8ee99f5
No related branches found
No related tags found
No related merge requests found
......@@ -358,8 +358,9 @@ void testRotation()
int main()
{
// choke on NaN
feenableexcept(FE_INVALID);
// choke on NaN -- don't enable this by default, as there are
// a few harmless NaN in the loopsolver
//feenableexcept(FE_INVALID);
std::cout << std::setw(15) << std::setprecision(12);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment