From c44f70badcf31bfd9e8e67ce34c65bff1e1522e2 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Thu, 21 Oct 2010 14:08:00 -0400 Subject: Use `x' instead of `t' for the variable in tests. --- tests/EquationSystem.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/EquationSystem.cpp') diff --git a/tests/EquationSystem.cpp b/tests/EquationSystem.cpp index 6919506..6d83917 100644 --- a/tests/EquationSystem.cpp +++ b/tests/EquationSystem.cpp @@ -25,13 +25,13 @@ typedef vZ::EquationSystem<2> Y; -// y'' = y (y == C*exp(t) + D*exp(-t)) +// y'' = y (y == C*exp(x) + D*exp(-x)) // // Split as: // y' = v // v' = y Y -f(double t, Y y) +f(double x, Y y) { Y r; r[0] = y[1]; -- cgit v1.2.3