dummy resize function
| 66 | |
| 67 | // dummy resize function |
| 68 | void resize(Index rows, Index cols) |
| 69 | { |
| 70 | EIGEN_UNUSED_VARIABLE(rows); |
| 71 | EIGEN_UNUSED_VARIABLE(cols); |
| 72 | eigen_assert(rows==this->rows() && cols==this->cols()); |
| 73 | } |
| 74 | |
| 75 | EIGEN_DEVICE_FUNC |
| 76 | inline Scalar coeff(Index row, Index col) const { return derived().coeff(row,col); } |
no test coverage detected