summaryrefslogtreecommitdiffstats
path: root/tests/EquationSystem.cpp
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@gmail.com>2010-10-19 01:12:57 -0400
committerTavian Barnes <tavianator@gmail.com>2010-10-19 01:12:57 -0400
commitc01880ba9cfdeb2677eee9b92ee10507070eb86e (patch)
treeb5f8ad7208414d17781c3e4771c1b58c44def78b /tests/EquationSystem.cpp
parent2829763fc5f9d222a966402bf073083dbc1da51c (diff)
downloadvz-c01880ba9cfdeb2677eee9b92ee10507070eb86e.tar.xz
Support std::complex<T>.
Diffstat (limited to 'tests/EquationSystem.cpp')
-rw-r--r--tests/EquationSystem.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/EquationSystem.cpp b/tests/EquationSystem.cpp
index b1fed00..0a929aa 100644
--- a/tests/EquationSystem.cpp
+++ b/tests/EquationSystem.cpp
@@ -59,7 +59,7 @@ main()
<< "Iterations: " << integrator.iterations() << std::endl
<< "Rejections: " << integrator.rejections() << std::endl;
- double error = std::fabs(expected - actual)/expected;
+ double error = std::abs(expected - actual)/expected;
if (error > 6.0e-7) {
std::cerr << "Error: " << 100.0*error << "%" << std::endl;
return EXIT_FAILURE;