#include "ODESFunc.h"
Classes | |
struct | DAEJac |
Public Types | |
typedef ColumnVector(* | ODES_bsub )(const ColumnVector &x, double, const ColumnVector &theta, int column) |
typedef ColumnVector(* | ODES_fsub )(const ColumnVector &x, double, const ColumnVector &theta) |
typedef Matrix(* | ODES_jsub )(const ColumnVector &x, double, const ColumnVector &theta) |
Public Member Functions | |
ODESFunc (void) | |
ODESFunc (ODES_fsub f) | |
ODESFunc (ODES_fsub f, ODES_bsub b, ODES_jsub j) | |
ODESFunc (const ODESFunc &a) | |
ODESFunc (ODES_fsub f, ODES_bsub b) | |
virtual | ~ODESFunc (void) |
ODES_bsub | bsub_function (void) const |
ODES_fsub | fsub_function (void) const |
ODES_jsub | jsub_function (void) const |
ODESFunc & | operator= (const ODESFunc &a) |
ODESFunc & | set_bsub_function (ODES_bsub b) |
ODESFunc & | set_fsub_function (ODES_fsub f) |
ODESFunc & | set_jsub_function (ODES_jsub j) |
Protected Attributes | |
ODES_bsub | bsub |
ODES_fsub | fsub |
ODES_jsub | jsub |
Definition at line 28 of file ODESFunc.h.
typedef ColumnVector(* ODESFunc::ODES_bsub)(const ColumnVector &x, double, const ColumnVector &theta, int column) |
Definition at line 42 of file ODESFunc.h.
typedef ColumnVector(* ODESFunc::ODES_fsub)(const ColumnVector &x, double, const ColumnVector &theta) |
Definition at line 39 of file ODESFunc.h.
typedef Matrix(* ODESFunc::ODES_jsub)(const ColumnVector &x, double, const ColumnVector &theta) |
Definition at line 45 of file ODESFunc.h.
ODESFunc::ODESFunc | ( | void | ) | [inline] |
Definition at line 48 of file ODESFunc.h.
ODESFunc::ODESFunc | ( | ODES_fsub | f | ) | [inline] |
Definition at line 51 of file ODESFunc.h.
Definition at line 54 of file ODESFunc.h.
Definition at line 57 of file ODESFunc.h.
ODESFunc::ODESFunc | ( | const ODESFunc & | a | ) | [inline] |
Definition at line 60 of file ODESFunc.h.
virtual ODESFunc::~ODESFunc | ( | void | ) | [inline, virtual] |
Definition at line 74 of file ODESFunc.h.
ODES_bsub ODESFunc::bsub_function | ( | void | ) | const [inline] |
Definition at line 84 of file ODESFunc.h.
ODES_fsub ODESFunc::fsub_function | ( | void | ) | const [inline] |
Definition at line 76 of file ODESFunc.h.
ODES_jsub ODESFunc::jsub_function | ( | void | ) | const [inline] |
Definition at line 92 of file ODESFunc.h.
Definition at line 63 of file ODESFunc.h.
References bsub, fsub, and jsub.
Referenced by ODES::operator=().
Definition at line 86 of file ODESFunc.h.
Definition at line 78 of file ODESFunc.h.
Definition at line 94 of file ODESFunc.h.
ODES_bsub ODESFunc::bsub [protected] |
Definition at line 103 of file ODESFunc.h.
Referenced by operator=().
ODES_fsub ODESFunc::fsub [protected] |
Definition at line 102 of file ODESFunc.h.
Referenced by operator=().
ODES_jsub ODESFunc::jsub [protected] |
Definition at line 104 of file ODESFunc.h.
Referenced by operator=().