| 14 | class SolverMatrix { |
| 15 | public: |
| 16 | SolverMatrix (george::kernels::Kernel* kernel) |
| 17 | : kernel_(kernel) {}; |
| 18 | void set_input_coordinates (RowMatrixXd x) { |
| 19 | if (size_t(x.cols()) != kernel_->get_ndim()) { |
| 20 | throw george::dimension_mismatch(); |
nothing calls this directly
no outgoing calls
no test coverage detected