codac  1.5.7
codac_capd_integrateODE.h
Go to the documentation of this file.
1 
12 #ifndef __CODAC_CAPDINTEGRATEODE_H__
13 #define __CODAC_CAPDINTEGRATEODE_H__
14 
15 #include "codac_TubeVector.h"
16 #include "codac_TFunction.h"
17 #include "codac_IntervalVector.h"
18 #include "codac_Function.h"
19 
20 namespace codac
21 {
22  // Autonomous
23 
36  const Interval& tdomain, const Function& f, const IntervalVector& x0,
37  double tube_dt = 0., int capd_order = 20, double capd_dt = 0.);
38 
39  // Non autonomous
40 
53  const Interval& tdomain, const TFunction& f, const IntervalVector& x0,
54  double tube_dt = 0., int capd_order = 20, double capd_dt = 0.);
55 }
56 
57 #endif
n-dimensional tube , defined as an interval of n-dimensional trajectories
Definition: codac_TubeVector.h:39
FixPoint of a separator The fixpoint of a separator is computed by calling the "::"separate function ...
Definition: codac_capd_helpers.h:9
TubeVector CAPD_integrateODE(const Interval &tdomain, const Function &f, const IntervalVector &x0, double tube_dt=0., int capd_order=20, double capd_dt=0.)
Integrates the autonomous ODE using CAPD.