CAPD DynSys Library
5.2.0
|
This file defines class for computation of [C0-C2] rough enclosure to an ODE by high order Taylor method. More...
#include <capd/dynsys/HighOrderEnclosure.h>
Static Public Member Functions | |
template<typename DS > | |
static DS::VectorType | enclosure (DS &ds, typename DS::ScalarType const ¤tTime, typename DS::MatrixType::RowVectorType const &x) |
template<class DS , class CoeffType > | |
static void | computeEnclosureAndRemainder (DS &ds, const typename DS::ScalarType &t, const typename DS::VectorType &, CoeffType &out_enclosure, CoeffType &out_remainder) |
This is the only public method required for enclosure policy. More... | |
This file defines class for computation of [C0-C2] rough enclosure to an ODE by high order Taylor method.
It is designed to be a template parameter for all rigorous solver classes.
|
inlinestatic |
This is the only public method required for enclosure policy.
Computes enclosure of solution of ODE during one time step i.e for some , where is the predicted step or for if changing of the time step is not allowed.
If CoeffType is a C1Coff structure then the function computes enclosure and the Lagrange remainder for the solutions to variational equations as well.
ds | dynamical system |
out_remainder | when success, contains the Lagrange remainder computed at enclosure |
out_enclosure | enclosure of the set of solution over a time step |
|
inlinestatic |