Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r70663 - in sandbox/odeint/branches/karsten: . boost/numeric/odeint/stepper libs/numeric/odeint/doc libs/numeric/odeint/examples
From: karsten.ahnert_at_[hidden]
Date: 2011-03-28 08:06:23


Author: karsten
Date: 2011-03-28 08:06:21 EDT (Mon, 28 Mar 2011)
New Revision: 70663
URL: http://svn.boost.org/trac/boost/changeset/70663

Log:
mini changes
Text files modified:
   sandbox/odeint/branches/karsten/TODO | 1 -
   sandbox/odeint/branches/karsten/boost/numeric/odeint/stepper/explicit_rk4.hpp | 4 ++--
   sandbox/odeint/branches/karsten/libs/numeric/odeint/doc/tutorial.qbk | 2 ++
   sandbox/odeint/branches/karsten/libs/numeric/odeint/examples/stiff_system.cpp | 7 ++++---
   4 files changed, 8 insertions(+), 6 deletions(-)

Modified: sandbox/odeint/branches/karsten/TODO
==============================================================================
--- sandbox/odeint/branches/karsten/TODO (original)
+++ sandbox/odeint/branches/karsten/TODO 2011-03-28 08:06:21 EDT (Mon, 28 Mar 2011)
@@ -35,7 +35,6 @@
   OK * move error_checker into controlled_stepper
   * rename controlled_stepper to a more specific name
 * dense output for rosenbrock
-* Integrate functions
 * skript for setting the include defines according to the position in file system an writing a general copyright comment at the beginning
 * Documentation
 * Tutorials

Modified: sandbox/odeint/branches/karsten/boost/numeric/odeint/stepper/explicit_rk4.hpp
==============================================================================
--- sandbox/odeint/branches/karsten/boost/numeric/odeint/stepper/explicit_rk4.hpp (original)
+++ sandbox/odeint/branches/karsten/boost/numeric/odeint/stepper/explicit_rk4.hpp 2011-03-28 08:06:21 EDT (Mon, 28 Mar 2011)
@@ -106,8 +106,8 @@
 
                 typename boost::unwrap_reference< System >::type &sys = system;
 
- time_type dh = static_cast< value_type >( 0.5 ) * dt;
- time_type th = t + dh;
+ const time_type dh = static_cast< value_type >( 0.5 ) * dt;
+ const time_type th = t + dh;
 
         // dt * dxdt = k1
         // m_x_tmp = x + dh*dxdt

Modified: sandbox/odeint/branches/karsten/libs/numeric/odeint/doc/tutorial.qbk
==============================================================================
--- sandbox/odeint/branches/karsten/libs/numeric/odeint/doc/tutorial.qbk (original)
+++ sandbox/odeint/branches/karsten/libs/numeric/odeint/doc/tutorial.qbk 2011-03-28 08:06:21 EDT (Mon, 28 Mar 2011)
@@ -24,6 +24,8 @@
 
 dense output
 
+Algebras and operations
+
 Overview and table
 
 [endsect]

Modified: sandbox/odeint/branches/karsten/libs/numeric/odeint/examples/stiff_system.cpp
==============================================================================
--- sandbox/odeint/branches/karsten/libs/numeric/odeint/examples/stiff_system.cpp (original)
+++ sandbox/odeint/branches/karsten/libs/numeric/odeint/examples/stiff_system.cpp 2011-03-28 08:06:21 EDT (Mon, 28 Mar 2011)
@@ -19,7 +19,7 @@
 namespace phoenix = boost::phoenix;
 
 
-/*
+
 //[ stiff_system_definition
 typedef boost::numeric::ublas::vector< double > vector_type;
 typedef boost::numeric::ublas::matrix< double > matrix_type;
@@ -46,9 +46,10 @@
         }
 };
 //]
-*/
 
 
+
+/*
 //[ stiff_system_alternative_definition
 typedef boost::numeric::ublas::vector< double > vector_type;
 typedef boost::numeric::ublas::matrix< double > matrix_type;
@@ -69,7 +70,7 @@
         }
 };
 //]
-
+*/
 
 
 


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