|
CSL
5.2
|
#include <string.h>#include <cmath>#include <cstdio>#include <cstdlib>#include <string>#include <iostream>#include <stdexcep>Go to the source code of this file.
Classes | |
| class | math::matrix_error |
| class | math::matrix |
| struct | math::matrix::base_mat |
Namespaces | |
| namespace | math |
Macros | |
| #define | __GXX_WEAK__ 1 |
| #define | __DEPRECATED 1 |
| #define | __GNUG__ 4 |
| #define | __EXCEPTIONS 1 |
| #define | __private_extern__ extern |
| #define | _NO_THROW throw () |
| #define | _THROW_MATRIX_ERROR throw (matrix_error) |
| #define | max(a, b) (((a) > (b)) ? (a) : (b)) |
| #define | min(a, b) (((a) < (b)) ? (a) : (b)) |
| #define | FRIEND_FUN_TEMPLATE <> |
| #define | REPORT_ERROR(ErrormMsg) throw matrix_error(ErrormMsg); |
| #define | MAT_TEMPLATE template <class T> |
| #define | matrixT matrix<T> |
| #define __GXX_WEAK__ 1 |
Definition at line 84 of file matrix.hpp.
| #define __DEPRECATED 1 |
Definition at line 85 of file matrix.hpp.
| #define __GNUG__ 4 |
Definition at line 86 of file matrix.hpp.
| #define __EXCEPTIONS 1 |
Definition at line 87 of file matrix.hpp.
| #define __private_extern__ extern |
Definition at line 88 of file matrix.hpp.
| #define _NO_THROW throw () |
Definition at line 151 of file matrix.hpp.
| #define _THROW_MATRIX_ERROR throw (matrix_error) |
Definition at line 152 of file matrix.hpp.
| #define max | ( | a, | |
| b | |||
| ) | (((a) > (b)) ? (a) : (b)) |
Definition at line 156 of file matrix.hpp.
Referenced by isDone(), and csl::Lorenz::nextBuffer().
| #define min | ( | a, | |
| b | |||
| ) | (((a) < (b)) ? (a) : (b)) |
Definition at line 157 of file matrix.hpp.
Referenced by isDone().
| #define FRIEND_FUN_TEMPLATE <> |
Definition at line 171 of file matrix.hpp.
| #define REPORT_ERROR | ( | ErrormMsg | ) | throw matrix_error(ErrormMsg); |
Definition at line 197 of file matrix.hpp.
| #define MAT_TEMPLATE template <class T> |
Definition at line 208 of file matrix.hpp.
| #define matrixT matrix<T> |
Definition at line 209 of file matrix.hpp.
Referenced by math::operator!(), math::operator*(), math::operator+(), math::operator-(), math::operator^(), and math::operator~().