| 246 | Eigen::MatrixXd *getPtr() { return &mat; } |
| 247 | const Eigen::MatrixXd &view() { return mat; } |
| 248 | const Eigen::MatrixXd *viewPtr() { return &mat; } |
| 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) { |
nothing calls this directly
no outgoing calls
no test coverage detected