OGS
|
Functions | |
void | dump_py (std::ostream &fh, std::string const &var, double const val) |
Dumps a double value as a Python script snippet. | |
void | dump_py (std::ostream &fh, std::string const &var, std::size_t const val) |
Dumps a std::size_t value as a Python script snippet. | |
template<typename Vec > | |
void | dump_py_vec (std::ostream &fh, std::string const &var, Vec const &val) |
Dumps an arbitrary vector as a Python script snippet. | |
void | dump_py (std::ostream &fh, std::string const &var, std::vector< double > const &val) |
Dumps a std::vector<double> as a Python script snippet. | |
template<typename Derived > | |
void | dump_py (std::ostream &fh, std::string const &var, Eigen::ArrayBase< Derived > const &val, std::integral_constant< int, 1 >) |
Dumps an Eigen vector (array with 1 column) as a Python script snippet. | |
template<typename Derived , int ColsAtCompileTime> | |
void | dump_py (std::ostream &fh, std::string const &var, Eigen::ArrayBase< Derived > const &val, std::integral_constant< int, ColsAtCompileTime >) |
Dumps an Eigen array as a Python script snippet. | |
template<typename Derived > | |
void | dump_py (std::ostream &fh, std::string const &var, Eigen::ArrayBase< Derived > const &val) |
Dumps an Eigen array as a Python script snippet. | |
template<typename Derived > | |
void | dump_py (std::ostream &fh, std::string const &var, Eigen::MatrixBase< Derived > const &val) |
Dumps an Eigen matrix as a Python script snippet. | |
Variables | |
const std::string | msg_fatal |
Will be printed if some consistency error is detected. | |
void anonymous_namespace{CompareJacobiansJacobianAssembler.cpp}::dump_py | ( | std::ostream & | fh, |
std::string const & | var, | ||
double const | val ) |
Dumps a double
value as a Python script snippet.
Definition at line 22 of file CompareJacobiansJacobianAssembler.cpp.
void anonymous_namespace{CompareJacobiansJacobianAssembler.cpp}::dump_py | ( | std::ostream & | fh, |
std::string const & | var, | ||
Eigen::ArrayBase< Derived > const & | val ) |
Dumps an Eigen array as a Python script snippet.
Definition at line 103 of file CompareJacobiansJacobianAssembler.cpp.
References dump_py().
void anonymous_namespace{CompareJacobiansJacobianAssembler.cpp}::dump_py | ( | std::ostream & | fh, |
std::string const & | var, | ||
Eigen::ArrayBase< Derived > const & | val, | ||
std::integral_constant< int, 1 > | ) |
Dumps an Eigen vector (array with 1 column) as a Python script snippet.
Definition at line 67 of file CompareJacobiansJacobianAssembler.cpp.
References dump_py_vec().
void anonymous_namespace{CompareJacobiansJacobianAssembler.cpp}::dump_py | ( | std::ostream & | fh, |
std::string const & | var, | ||
Eigen::ArrayBase< Derived > const & | val, | ||
std::integral_constant< int, ColsAtCompileTime > | ) |
Dumps an Eigen array as a Python script snippet.
Definition at line 76 of file CompareJacobiansJacobianAssembler.cpp.
void anonymous_namespace{CompareJacobiansJacobianAssembler.cpp}::dump_py | ( | std::ostream & | fh, |
std::string const & | var, | ||
Eigen::MatrixBase< Derived > const & | val ) |
Dumps an Eigen matrix as a Python script snippet.
Definition at line 112 of file CompareJacobiansJacobianAssembler.cpp.
References dump_py().
void anonymous_namespace{CompareJacobiansJacobianAssembler.cpp}::dump_py | ( | std::ostream & | fh, |
std::string const & | var, | ||
std::size_t const | val ) |
Dumps a std::size_t
value as a Python script snippet.
Definition at line 28 of file CompareJacobiansJacobianAssembler.cpp.
void anonymous_namespace{CompareJacobiansJacobianAssembler.cpp}::dump_py | ( | std::ostream & | fh, |
std::string const & | var, | ||
std::vector< double > const & | val ) |
Dumps a std::vector<double>
as a Python script snippet.
Definition at line 59 of file CompareJacobiansJacobianAssembler.cpp.
References dump_py_vec().
void anonymous_namespace{CompareJacobiansJacobianAssembler.cpp}::dump_py_vec | ( | std::ostream & | fh, |
std::string const & | var, | ||
Vec const & | val ) |
Dumps an arbitrary vector as a Python script snippet.
Definition at line 35 of file CompareJacobiansJacobianAssembler.cpp.
const std::string anonymous_namespace{CompareJacobiansJacobianAssembler.cpp}::msg_fatal |
Will be printed if some consistency error is detected.
Definition at line 119 of file CompareJacobiansJacobianAssembler.cpp.