Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r68777 - sandbox/odeint/boost/numeric/odeint
From: karsten.ahnert_at_[hidden]
Date: 2011-02-11 05:05:51


Author: karsten
Date: 2011-02-11 05:05:47 EST (Fri, 11 Feb 2011)
New Revision: 68777
URL: http://svn.boost.org/trac/boost/changeset/68777

Log:
* typo fix
Text files modified:
   sandbox/odeint/boost/numeric/odeint/stepper_half_step.hpp | 12 ++++++------
   1 files changed, 6 insertions(+), 6 deletions(-)

Modified: sandbox/odeint/boost/numeric/odeint/stepper_half_step.hpp
==============================================================================
--- sandbox/odeint/boost/numeric/odeint/stepper_half_step.hpp (original)
+++ sandbox/odeint/boost/numeric/odeint/stepper_half_step.hpp 2011-02-11 05:05:47 EST (Fri, 11 Feb 2011)
@@ -1,8 +1,8 @@
 /* Boost odeint/stepper_half_stepr.hpp header file
-
+
  Copyright 2009 Karsten Ahnert
  Copyright 2009 Mario Mulansky
-
+
  This file includes a stepper which calculates the
  error during one step from performing two steps with
  the halt stepsize. It works with arbitray steppers
@@ -57,8 +57,8 @@
         container_type m_dxdt;
         container_type m_xtemp;
         stepper_type m_stepper;
- const time_time m_fac;
-
+ const time_type m_fac;
+
 
         //
         // public interface
@@ -81,9 +81,9 @@
 
 
         // the order of the error term if the error step is performed
- order_type order_error( void ) const
+ order_type order_error( void ) const
         {
- return m_stepper.order_step() + 1;
+ return m_stepper.order_step() + 1;
         }
 
 


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk