diff options
author | Tavian Barnes <tavianator@gmail.com> | 2010-10-21 14:08:00 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2010-10-21 14:08:00 -0400 |
commit | c44f70badcf31bfd9e8e67ce34c65bff1e1522e2 (patch) | |
tree | 43df3493393dbaff73e8d10963fe85b477401f04 /tests/Vector.cpp | |
parent | d92b4ccd931502d1fc4117d8bc7738e0bb497297 (diff) | |
download | vz-c44f70badcf31bfd9e8e67ce34c65bff1e1522e2.tar.xz |
Use `x' instead of `t' for the variable in tests.
Diffstat (limited to 'tests/Vector.cpp')
-rw-r--r-- | tests/Vector.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Vector.cpp b/tests/Vector.cpp index e3b660c..688f826 100644 --- a/tests/Vector.cpp +++ b/tests/Vector.cpp @@ -23,9 +23,9 @@ #include <iostream> #include <iomanip> -// y' = -y (y == C*exp(-t)) +// y' = -y (y == C*exp(-x)) vZ::Vector<3> -f(double t, vZ::Vector<3> y) +f(double x, vZ::Vector<3> y) { return -y; } |