#include "cgmres/thirdparty/eigen/Eigen/Core"
Go to the source code of this file.
|
| using | cgmres::Scalar = double |
| | Alias of double.
|
| |
| template<int rows, int cols> |
| using | cgmres::Matrix = Eigen::Matrix< Scalar, rows, cols > |
| | Alias of Eigen::Matrix.
|
| |
| template<int size> |
| using | cgmres::Vector = Eigen::Matrix< Scalar, size, 1 > |
| | Alias of Eigen::Vector.
|
| |
| template<class MatrixType > |
| using | cgmres::MatrixBase = Eigen::MatrixBase< MatrixType > |
| | Alias of Eigen::MatrixBase.
|
| |
| using | cgmres::MatrixX = Eigen::Matrix< Scalar, Eigen::Dynamic, Eigen::Dynamic > |
| | Alias of Eigen::MatrixXd (dynamic-size matrix).
|
| |
| using | cgmres::VectorX = Eigen::Matrix< Scalar, Eigen::Dynamic, 1 > |
| | Alias of Eigen::VectorXd (dynamic-size vector).
|
| |
| using | cgmres::VectorXi = Eigen::Matrix< int, Eigen::Dynamic, 1 > |
| | Alias of Eigen::VectorXi (dynamic-size integer vector).
|
| |
| template<class MatrixType > |
| using | cgmres::Map = Eigen::Map< MatrixType > |
| | Alias of Eigen::Map.
|
| |
◆ EIGEN_STACK_ALLOCATION_LIMIT
| #define EIGEN_STACK_ALLOCATION_LIMIT 0 |