summaryrefslogtreecommitdiffstats
path: root/tests/EquationSystem.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/EquationSystem.cpp')
-rw-r--r--tests/EquationSystem.cpp4
1 files changed, 2 insertions, 2 deletions
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];