|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r58084 - in sandbox/odeint: branches branches/bgl_itegration branches/bgl_itegration/boost branches/bgl_itegration/libs branches/bgl_itegration/libs/numeric/odeint/examples branches/blitz_integration branches/blitz_integration/boost branches/blitz_integration/libs branches/blitz_integration/libs/numeric/odeint/examples branches/mtl_integration branches/mtl_integration/boost branches/mtl_integration/libs branches/mtl_integration/libs/numeric/odeint/examples branches/ublas_integration branches/ublas_integration/boost branches/ublas_integration/libs branches/ublas_integration/libs/numeric/odeint/examples libs/numeric/odeint/examples
From: karsten.ahnert_at_[hidden]
Date: 2009-12-01 09:37:57
Author: karsten
Date: 2009-12-01 09:37:56 EST (Tue, 01 Dec 2009)
New Revision: 58084
URL: http://svn.boost.org/trac/boost/changeset/58084
Log:
branching
Added:
sandbox/odeint/branches/
sandbox/odeint/branches/bgl_itegration/
sandbox/odeint/branches/bgl_itegration/Jamroot (props changed)
- copied unchanged from r58081, /sandbox/odeint/Jamroot
sandbox/odeint/branches/bgl_itegration/boost/ (props changed)
- copied from r58081, /sandbox/odeint/boost/
sandbox/odeint/branches/bgl_itegration/boost-build.jam (props changed)
- copied unchanged from r58081, /sandbox/odeint/boost-build.jam
sandbox/odeint/branches/bgl_itegration/libs/ (props changed)
- copied from r58081, /sandbox/odeint/libs/
sandbox/odeint/branches/blitz_integration/
sandbox/odeint/branches/blitz_integration/Jamroot (props changed)
- copied unchanged from r58081, /sandbox/odeint/Jamroot
sandbox/odeint/branches/blitz_integration/boost/ (props changed)
- copied from r58081, /sandbox/odeint/boost/
sandbox/odeint/branches/blitz_integration/boost-build.jam (props changed)
- copied unchanged from r58081, /sandbox/odeint/boost-build.jam
sandbox/odeint/branches/blitz_integration/libs/ (props changed)
- copied from r58081, /sandbox/odeint/libs/
sandbox/odeint/branches/mtl_integration/
sandbox/odeint/branches/mtl_integration/Jamroot (props changed)
- copied unchanged from r58081, /sandbox/odeint/Jamroot
sandbox/odeint/branches/mtl_integration/boost/ (props changed)
- copied from r58081, /sandbox/odeint/boost/
sandbox/odeint/branches/mtl_integration/boost-build.jam (props changed)
- copied unchanged from r58081, /sandbox/odeint/boost-build.jam
sandbox/odeint/branches/mtl_integration/libs/ (props changed)
- copied from r58081, /sandbox/odeint/libs/
sandbox/odeint/branches/ublas_integration/
sandbox/odeint/branches/ublas_integration/Jamroot (props changed)
- copied unchanged from r58081, /sandbox/odeint/Jamroot
sandbox/odeint/branches/ublas_integration/boost/ (props changed)
- copied from r58081, /sandbox/odeint/boost/
sandbox/odeint/branches/ublas_integration/boost-build.jam (props changed)
- copied unchanged from r58081, /sandbox/odeint/boost-build.jam
sandbox/odeint/branches/ublas_integration/libs/ (props changed)
- copied from r58081, /sandbox/odeint/libs/
Text files modified:
sandbox/odeint/branches/bgl_itegration/libs/numeric/odeint/examples/lorenz_integrate_constant_step.cpp | 7 ++++---
sandbox/odeint/branches/blitz_integration/libs/numeric/odeint/examples/lorenz_integrate_constant_step.cpp | 7 ++++---
sandbox/odeint/branches/mtl_integration/libs/numeric/odeint/examples/lorenz_integrate_constant_step.cpp | 7 ++++---
sandbox/odeint/branches/ublas_integration/libs/numeric/odeint/examples/lorenz_integrate_constant_step.cpp | 7 ++++---
sandbox/odeint/libs/numeric/odeint/examples/lorenz_integrate_constant_step.cpp | 7 ++++---
5 files changed, 20 insertions(+), 15 deletions(-)
Modified: sandbox/odeint/branches/bgl_itegration/libs/numeric/odeint/examples/lorenz_integrate_constant_step.cpp
==============================================================================
--- /sandbox/odeint/libs/numeric/odeint/examples/lorenz_integrate_constant_step.cpp (original)
+++ sandbox/odeint/branches/bgl_itegration/libs/numeric/odeint/examples/lorenz_integrate_constant_step.cpp 2009-12-01 09:37:56 EST (Tue, 01 Dec 2009)
@@ -47,7 +47,8 @@
const double dt = 0.01;
const size_t olen = 10000;
-typedef vector<double> state_type;
+//typedef std::tr1::array< double , 3 > state_type;
+typedef vector< double> state_type;
void lorenz( state_type &x , state_type &dxdt , double t )
{
@@ -63,8 +64,8 @@
x[1] = 0.0;
x[2] = 0.0;
- stepper_rk4< state_type , double > rk4;
- stepper_euler< state_type , double > euler;
+ stepper_rk4< state_type > rk4;
+ stepper_euler< state_type > euler;
integrate_const( rk4 , lorenz , 0.0 , 0.01 , x , 100.0 ,
cout << _1 << tab << _2[0] << "\n" );
Modified: sandbox/odeint/branches/blitz_integration/libs/numeric/odeint/examples/lorenz_integrate_constant_step.cpp
==============================================================================
--- /sandbox/odeint/libs/numeric/odeint/examples/lorenz_integrate_constant_step.cpp (original)
+++ sandbox/odeint/branches/blitz_integration/libs/numeric/odeint/examples/lorenz_integrate_constant_step.cpp 2009-12-01 09:37:56 EST (Tue, 01 Dec 2009)
@@ -47,7 +47,8 @@
const double dt = 0.01;
const size_t olen = 10000;
-typedef vector<double> state_type;
+//typedef std::tr1::array< double , 3 > state_type;
+typedef vector< double> state_type;
void lorenz( state_type &x , state_type &dxdt , double t )
{
@@ -63,8 +64,8 @@
x[1] = 0.0;
x[2] = 0.0;
- stepper_rk4< state_type , double > rk4;
- stepper_euler< state_type , double > euler;
+ stepper_rk4< state_type > rk4;
+ stepper_euler< state_type > euler;
integrate_const( rk4 , lorenz , 0.0 , 0.01 , x , 100.0 ,
cout << _1 << tab << _2[0] << "\n" );
Modified: sandbox/odeint/branches/mtl_integration/libs/numeric/odeint/examples/lorenz_integrate_constant_step.cpp
==============================================================================
--- /sandbox/odeint/libs/numeric/odeint/examples/lorenz_integrate_constant_step.cpp (original)
+++ sandbox/odeint/branches/mtl_integration/libs/numeric/odeint/examples/lorenz_integrate_constant_step.cpp 2009-12-01 09:37:56 EST (Tue, 01 Dec 2009)
@@ -47,7 +47,8 @@
const double dt = 0.01;
const size_t olen = 10000;
-typedef vector<double> state_type;
+//typedef std::tr1::array< double , 3 > state_type;
+typedef vector< double> state_type;
void lorenz( state_type &x , state_type &dxdt , double t )
{
@@ -63,8 +64,8 @@
x[1] = 0.0;
x[2] = 0.0;
- stepper_rk4< state_type , double > rk4;
- stepper_euler< state_type , double > euler;
+ stepper_rk4< state_type > rk4;
+ stepper_euler< state_type > euler;
integrate_const( rk4 , lorenz , 0.0 , 0.01 , x , 100.0 ,
cout << _1 << tab << _2[0] << "\n" );
Modified: sandbox/odeint/branches/ublas_integration/libs/numeric/odeint/examples/lorenz_integrate_constant_step.cpp
==============================================================================
--- /sandbox/odeint/libs/numeric/odeint/examples/lorenz_integrate_constant_step.cpp (original)
+++ sandbox/odeint/branches/ublas_integration/libs/numeric/odeint/examples/lorenz_integrate_constant_step.cpp 2009-12-01 09:37:56 EST (Tue, 01 Dec 2009)
@@ -47,7 +47,8 @@
const double dt = 0.01;
const size_t olen = 10000;
-typedef vector<double> state_type;
+//typedef std::tr1::array< double , 3 > state_type;
+typedef vector< double> state_type;
void lorenz( state_type &x , state_type &dxdt , double t )
{
@@ -63,8 +64,8 @@
x[1] = 0.0;
x[2] = 0.0;
- stepper_rk4< state_type , double > rk4;
- stepper_euler< state_type , double > euler;
+ stepper_rk4< state_type > rk4;
+ stepper_euler< state_type > euler;
integrate_const( rk4 , lorenz , 0.0 , 0.01 , x , 100.0 ,
cout << _1 << tab << _2[0] << "\n" );
Modified: sandbox/odeint/libs/numeric/odeint/examples/lorenz_integrate_constant_step.cpp
==============================================================================
--- sandbox/odeint/libs/numeric/odeint/examples/lorenz_integrate_constant_step.cpp (original)
+++ sandbox/odeint/libs/numeric/odeint/examples/lorenz_integrate_constant_step.cpp 2009-12-01 09:37:56 EST (Tue, 01 Dec 2009)
@@ -47,7 +47,8 @@
const double dt = 0.01;
const size_t olen = 10000;
-typedef vector<double> state_type;
+//typedef std::tr1::array< double , 3 > state_type;
+typedef vector< double> state_type;
void lorenz( state_type &x , state_type &dxdt , double t )
{
@@ -63,8 +64,8 @@
x[1] = 0.0;
x[2] = 0.0;
- stepper_rk4< state_type , double > rk4;
- stepper_euler< state_type , double > euler;
+ stepper_rk4< state_type > rk4;
+ stepper_euler< state_type > euler;
integrate_const( rk4 , lorenz , 0.0 , 0.01 , x , 100.0 ,
cout << _1 << tab << _2[0] << "\n" );
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