summaryrefslogtreecommitdiffstats
path: root/tests/EquationSystem.cpp
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@gmail.com>2010-10-21 14:08:00 -0400
committerTavian Barnes <tavianator@gmail.com>2010-10-21 14:08:00 -0400
commitc44f70badcf31bfd9e8e67ce34c65bff1e1522e2 (patch)
tree43df3493393dbaff73e8d10963fe85b477401f04 /tests/EquationSystem.cpp
parentd92b4ccd931502d1fc4117d8bc7738e0bb497297 (diff)
downloadvz-c44f70badcf31bfd9e8e67ce34c65bff1e1522e2.tar.xz
Use `x' instead of `t' for the variable in tests.
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];