summaryrefslogtreecommitdiffstats
path: root/tests/Heun.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/Heun.cpp
parentd92b4ccd931502d1fc4117d8bc7738e0bb497297 (diff)
downloadvz-c44f70badcf31bfd9e8e67ce34c65bff1e1522e2.tar.xz
Use `x' instead of `t' for the variable in tests.
Diffstat (limited to 'tests/Heun.cpp')
-rw-r--r--tests/Heun.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Heun.cpp b/tests/Heun.cpp
index d9e4cbe..d4f02bc 100644
--- a/tests/Heun.cpp
+++ b/tests/Heun.cpp
@@ -23,9 +23,9 @@
#include <iostream>
#include <iomanip>
-// y' = y (y == C*exp(t))
+// y' = y (y == C*exp(x))
double
-f(double t, double y)
+f(double x, double y)
{
return y;
}