$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r68480 - sandbox/odeint/boost/numeric/odeint
From: karsten.ahnert_at_[hidden]
Date: 2011-01-27 13:05:30
Author: karsten
Date: 2011-01-27 13:05:29 EST (Thu, 27 Jan 2011)
New Revision: 68480
URL: http://svn.boost.org/trac/boost/changeset/68480
Log:
* correction in stepper_half_step
Text files modified: 
   sandbox/odeint/boost/numeric/odeint/stepper_half_step.hpp |     6 ++++++                                  
   1 files changed, 6 insertions(+), 0 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-01-27 13:05:29 EST (Thu, 27 Jan 2011)
@@ -24,6 +24,12 @@
 namespace odeint {
 
 
+
+	/*
+	 * see the Solving Ordinary Differential equations from Hairer
+	 *
+	 * Error estimation of x(t+dt) from two small steps and Richardson extrapolation
+	 */
     template< class Stepper >
     class stepper_half_step
     {