Miind
MatrixMasterEquation.h
Go to the documentation of this file.
1 // Copyright (c) 2005 - 2011 Marc de Kamps
2 // All rights reserved.
3 //
4 // Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
5 //
6 // * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
7 // * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation
8 // and/or other materials provided with the distribution.
9 // * Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software
10 // without specific prior written permission.
11 //
12 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
13 // WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY
14 // DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
15 // USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
16 // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
17 //
18 
19 // If you use this software in work leading to a scientific publication, you should include a reference there to
20 // the 'currently valid reference', which can be found at http://miind.sourceforge.net
21 #ifndef _CODE_LIBS_GEOMLIB_MATRIXMASTEREQUATION_INCLUDE_GUARD
22 #define _CODE_LIBS_GEOMLIB_MATRIXMASTEREQUATION_INCLUDE_GUARD
23 
24 #include "../NumtoolsLib/NumtoolsLib.h"
25 #include "MasterParameter.hpp"
26 
27 using MPILib::Density;
28 using NumtoolsLib::ExStateDVIntegrator;
29 using NumtoolsLib::Precision;
30 
31 namespace GeomLib {
32 
34  int DerivMatrixVersion( double t, const double y[], double dydt[], void* params);
35 
37 
40 
42  (
44  Number,
45  Index,
46  const Precision&,
47  Time,
48  Time
49 
50  );
51 
52  void Initialize
53  (
54  Index,
55  const vector<InputParameterSet>&
56  );
57 
59  const vector<Potential>& _vec_potential;
60  vector<Density>& _vec_density;
62  vector<Density> _vec_matrix_state;
63 
64  NumtoolsLib::ExStateDVIntegrator<MasterParameter> _matrix_integrator;
65  NumtoolsLib::QaDirty<double> _mat_transit;
66  };
67 }
68 
69 #endif // include guard
const vector< Potential > & _vec_potential
MatrixMasterEquation(SpikingOdeSystem &, Number, Index, const Precision &, Time, Time)
Second independent solver for the master equation, based on a matrix representation so that conservat...
unsigned int Number
unsigned int Index
double Time
int DerivMatrixVersion(double t, const double y[], double dydt[], void *params)
derivative function for MatrixMasterEquation
double Density
In this system of ordinary differential equations.
const SpikingOdeSystem & _system
NumtoolsLib::ExStateDVIntegrator< MasterParameter > _matrix_integrator
NumtoolsLib::QaDirty< double > _mat_transit
void Initialize(Index, const vector< InputParameterSet > &)