Resets the values of the static matrices returned by get_cm()/get_rm()
| 50 | } |
| 51 | // Resets the values of the static matrices returned by get_cm()/get_rm() |
| 52 | void reset_refs() { |
| 53 | reset_ref(get_cm()); |
| 54 | reset_ref(get_rm()); |
| 55 | } |
| 56 | |
| 57 | // Returns element 2,1 from a matrix (used to test copy/nocopy) |
| 58 | double get_elem(const Eigen::Ref<const Eigen::MatrixXd> &m) { return m(2, 1); } |
nothing calls this directly
no test coverage detected