summaryrefslogtreecommitdiffstats
path: root/src/vZ/Integrator.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/vZ/Integrator.hpp')
-rw-r--r--src/vZ/Integrator.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vZ/Integrator.hpp b/src/vZ/Integrator.hpp
index c6d6fbe..cb9649a 100644
--- a/src/vZ/Integrator.hpp
+++ b/src/vZ/Integrator.hpp
@@ -39,9 +39,9 @@ namespace vZ
typedef typename Traits<Y>::Scalar Scalar;
typedef std::tr1::function<Y (Scalar, Y)> Function;
- // By default, y and t start at zero, h starts UNDEFINED
+ // By default, y, t, and h start UNDEFINED
GenericIntegrator(Function f)
- : m_f(f), m_y(0), m_x(0), m_iterations(0) { }
+ : m_f(f),m_iterations(0) { }
virtual ~GenericIntegrator() { }
GenericIntegrator& y(Y y) { m_y = y; return *this; }