| 183 | |
| 184 | py::ssize_t rows() const { return Matrix::cols(); } |
| 185 | py::ssize_t cols() const { return Matrix::rows(); } |
| 186 | }; |
| 187 | py::class_<FortranMatrix, Matrix>(m, "FortranMatrix", py::buffer_protocol()) |
| 188 | .def(py::init<py::ssize_t, py::ssize_t>()) |
nothing calls this directly
no outgoing calls
no test coverage detected