Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r65712 - in sandbox/odeint/branches/karsten/boost/numeric/odeint/stepper: . base
From: mario.mulansky_at_[hidden]
Date: 2010-10-01 10:17:17


Author: mariomulansky
Date: 2010-10-01 10:17:15 EDT (Fri, 01 Oct 2010)
New Revision: 65712
URL: http://svn.boost.org/trac/boost/changeset/65712

Log:
renamed stepper tags
Text files modified:
   sandbox/odeint/branches/karsten/boost/numeric/odeint/stepper/base/stepper_categories.hpp | 8 ++++----
   sandbox/odeint/branches/karsten/boost/numeric/odeint/stepper/controlled_error_stepper.hpp | 2 +-
   sandbox/odeint/branches/karsten/boost/numeric/odeint/stepper/explicit_error_dopri5.hpp | 2 +-
   sandbox/odeint/branches/karsten/boost/numeric/odeint/stepper/explicit_error_rk54_ck.hpp | 2 +-
   4 files changed, 7 insertions(+), 7 deletions(-)

Modified: sandbox/odeint/branches/karsten/boost/numeric/odeint/stepper/base/stepper_categories.hpp
==============================================================================
--- sandbox/odeint/branches/karsten/boost/numeric/odeint/stepper/base/stepper_categories.hpp (original)
+++ sandbox/odeint/branches/karsten/boost/numeric/odeint/stepper/base/stepper_categories.hpp 2010-10-01 10:17:15 EDT (Fri, 01 Oct 2010)
@@ -20,10 +20,10 @@
  * Tags to specify stepper types
  */
 
-struct explicit_error_stepper_tag {};
-struct explicit_stepper_and_error_stepper_tag {};
-struct explicit_error_stepper_fsal_tag {};
-struct explicit_stepper_and_error_stepper_fsal_tag {};
+struct error_stepper_tag {};
+
+struct explicit_error_stepper_tag : error_stepper_tag {};
+struct explicit_error_stepper_fsal_tag : error_stepper_tag {};
 
 } // odeint
 } // numeric

Modified: sandbox/odeint/branches/karsten/boost/numeric/odeint/stepper/controlled_error_stepper.hpp
==============================================================================
--- sandbox/odeint/branches/karsten/boost/numeric/odeint/stepper/controlled_error_stepper.hpp (original)
+++ sandbox/odeint/branches/karsten/boost/numeric/odeint/stepper/controlled_error_stepper.hpp 2010-10-01 10:17:15 EDT (Fri, 01 Oct 2010)
@@ -40,7 +40,7 @@
                                                    typename ErrorStepper::time_type ,
                                                    typename ErrorStepper::algebra_type ,
                                                    typename ErrorStepper::operations_type > ,
- class ErrorStepperCategory = typename ErrorStepper::error_stepper_category
+ class ErrorStepperCategory = typename ErrorStepper::stepper_category
>
 class controlled_error_stepper { };
 

Modified: sandbox/odeint/branches/karsten/boost/numeric/odeint/stepper/explicit_error_dopri5.hpp
==============================================================================
--- sandbox/odeint/branches/karsten/boost/numeric/odeint/stepper/explicit_error_dopri5.hpp (original)
+++ sandbox/odeint/branches/karsten/boost/numeric/odeint/stepper/explicit_error_dopri5.hpp 2010-10-01 10:17:15 EDT (Fri, 01 Oct 2010)
@@ -44,7 +44,7 @@
 
         BOOST_ODEINT_EXPLICIT_STEPPERS_AND_ERROR_STEPPERS_TYPEDEFS( explicit_error_dopri5 , 5 , 5 , 4 );
 
- typedef explicit_error_stepper_fsal_tag error_stepper_category;
+ typedef explicit_error_stepper_fsal_tag stepper_category;
 
         explicit_error_dopri5( void )
         : m_size_adjuster() , m_x1() , m_x2() , m_x3() , m_x4() , m_x5() , m_x6()

Modified: sandbox/odeint/branches/karsten/boost/numeric/odeint/stepper/explicit_error_rk54_ck.hpp
==============================================================================
--- sandbox/odeint/branches/karsten/boost/numeric/odeint/stepper/explicit_error_rk54_ck.hpp (original)
+++ sandbox/odeint/branches/karsten/boost/numeric/odeint/stepper/explicit_error_rk54_ck.hpp 2010-10-01 10:17:15 EDT (Fri, 01 Oct 2010)
@@ -50,7 +50,7 @@
 
         BOOST_ODEINT_EXPLICIT_STEPPERS_AND_ERROR_STEPPERS_TYPEDEFS( explicit_error_rk54_ck , 5 , 5 , 4);
 
- typedef explicit_error_stepper_tag error_stepper_category;
+ typedef explicit_error_stepper_tag stepper_category;
 
         explicit_error_rk54_ck( void ) : m_size_adjuster() , m_x1() , m_x2() , m_x3() , m_x4() , m_x5() , m_x6()
         {


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