| 249 | Eigen::Ref<Eigen::MatrixXd> ref() { return mat; } |
| 250 | Eigen::Ref<const Eigen::MatrixXd> refConst() { return mat; } |
| 251 | Eigen::Block<Eigen::MatrixXd> block(int r, int c, int nrow, int ncol) { |
| 252 | return mat.block(r, c, nrow, ncol); |
| 253 | } |
| 254 | Eigen::Block<const Eigen::MatrixXd> blockConst(int r, int c, int nrow, int ncol) const { |
| 255 | return mat.block(r, c, nrow, ncol); |
| 256 | } |
no outgoing calls
no test coverage detected