diff options
author | Tavian Barnes <tavianator@gmail.com> | 2011-06-10 01:05:23 -0600 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2011-06-10 01:05:23 -0600 |
commit | d03ab99aa999544403652e0739c9bea3b8b7835e (patch) | |
tree | 6a470b04590652a6624e36771ff89894f9a761b1 /tests/RK4.cpp | |
parent | d4560540b80ac1a05c86812c51119ed08f01de9d (diff) | |
download | vz-d03ab99aa999544403652e0739c9bea3b8b7835e.tar.xz |
Test for NaNs in results.
Diffstat (limited to 'tests/RK4.cpp')
-rw-r--r-- | tests/RK4.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/RK4.cpp b/tests/RK4.cpp index 71a998c..9edeb1c 100644 --- a/tests/RK4.cpp +++ b/tests/RK4.cpp @@ -48,8 +48,8 @@ main() << "Expected: " << expected << std::endl << "Iterations: " << integrator.iterations() << std::endl; - double error = std::abs(expected - actual)/expected; - if (error > 4.2e-8) { + double error = std::abs(expected - actual)/std::abs(expected); + if (error > 4.2e-8 || !std::isfinite(error)) { std::cerr << "Error: " << 100.0*error << "%" << std::endl; return EXIT_FAILURE; } else { |