summaryrefslogtreecommitdiffstats
path: root/tests/CK45.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/CK45.cpp')
-rw-r--r--tests/CK45.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/CK45.cpp b/tests/CK45.cpp
index 62f4870..c040436 100644
--- a/tests/CK45.cpp
+++ b/tests/CK45.cpp
@@ -51,7 +51,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 > 2.7e-6) {
std::cerr << "Error: " << 100.0*error << "%" << std::endl;
return EXIT_FAILURE;