From daf5e150da756deb950023d61f0643dac875c941 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Wed, 6 Oct 2010 18:50:35 -0400 Subject: Make tests test for accuracy. --- tests/Euler.cpp | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) (limited to 'tests/Euler.cpp') diff --git a/tests/Euler.cpp b/tests/Euler.cpp index 5666cd8..0a6e28e 100644 --- a/tests/Euler.cpp +++ b/tests/Euler.cpp @@ -2,6 +2,7 @@ #include #include #include +#include // y' = y (y == C*exp(t)) double @@ -18,8 +19,19 @@ main() integrator.integrate(2.0); - std::cout << integrator.y() << std::endl - << std::exp(2.0) << std::endl; + double actual = integrator.y(); + double expected = std::exp(2.0); - return EXIT_SUCCESS; + std::cout << std::setprecision(10) + << "Numerical: " << actual << std::endl + << "Expected: " << expected << std::endl; + + double error = std::fabs(expected - actual)/expected; + if (error > 0.01) { + std::cerr << "Error: " << 100.0*error << "%" << std::endl; + return EXIT_FAILURE; + } else { + std::cout << "Error: " << 100.0*error << "%" << std::endl; + return EXIT_SUCCESS; + } } -- cgit v1.2.3