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/CK45.cpp | |
parent | d92b4ccd931502d1fc4117d8bc7738e0bb497297 (diff) | |
download | vz-c44f70badcf31bfd9e8e67ce34c65bff1e1522e2.tar.xz |
Use `x' instead of `t' for the variable in tests.
Diffstat (limited to 'tests/CK45.cpp')
-rw-r--r-- | tests/CK45.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/CK45.cpp b/tests/CK45.cpp index c040436..0c275df 100644 --- a/tests/CK45.cpp +++ b/tests/CK45.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; } |