| 24 | } |
| 25 | |
| 26 | HighsStatus writeHessianPicToFile(const HighsOptions& options, |
| 27 | const std::string& fileprefix, |
| 28 | const HighsHessian& hessian) { |
| 29 | return writeMatrixPicToFile(options, fileprefix, hessian.dim_, hessian.dim_, |
| 30 | hessian.start_, hessian.index_); |
| 31 | } |
| 32 | |
| 33 | HighsStatus writeMatrixPicToFile(const HighsOptions& options, |
| 34 | const std::string& fileprefix, |
no test coverage detected