forked from BhallaLab/moose-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBoostSys.cpp
39 lines (31 loc) · 891 Bytes
/
BoostSys.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*
* =====================================================================================
*
* Filename: BoostSystem.cpp
*
* Description: Ode system described boost library.
*
* Created: 04/11/2016 10:58:34 AM
* Compiler: g++
*
* Author: Dilawar Singh (), [email protected]
* Organization: NCBS Bangalore
*
* =====================================================================================
*/
#include "../utility/boost_ode.h"
#include <iostream>
#include "VoxelPools.h"
#ifdef USE_BOOST_ODE
BoostSys::BoostSys( ) : vp( NULL )
{ ; }
BoostSys::~BoostSys()
{ ; }
void BoostSys::operator()( const vector_type_ y
, vector_type_& dydt, const double t )
{
assert( vp );
VoxelPools::evalRates( y, dydt, t, vp );
}
#else /* ----- not USE_BOOST_ODE ----- */
#endif /* ----- not USE_BOOST_ODE ----- */