Default constructor. * * For fixed-size matrices, does nothing. * * For dynamic-size matrices, creates an empty matrix of size 0. Does not allocate any array. Such a matrix * is called a null matrix. This constructor is the unique way to create null matrices: resizing * a matrix to 0 is not supported. * * \sa resize(Index,Index) */
| 108 | * \sa resize(Index,Index) |
| 109 | */ |
| 110 | EIGEN_STRONG_INLINE Array() : Base() |
| 111 | { |
| 112 | Base::_check_template_params(); |
| 113 | EIGEN_INITIALIZE_COEFFS_IF_THAT_OPTION_IS_ENABLED |
| 114 | } |
| 115 | |
| 116 | #ifndef EIGEN_PARSED_BY_DOXYGEN |
| 117 | // FIXME is it still needed ?? |
nothing calls this directly
no test coverage detected