| 17 | #include <fstream> |
| 18 | |
| 19 | HighsStatus writeLpMatrixPicToFile(const HighsOptions& options, |
| 20 | const std::string& fileprefix, |
| 21 | const HighsLp& lp) { |
| 22 | return writeMatrixPicToFile(options, fileprefix, lp.num_row_, lp.num_col_, |
| 23 | lp.a_matrix_.start_, lp.a_matrix_.index_); |
| 24 | } |
| 25 | |
| 26 | HighsStatus writeHessianPicToFile(const HighsOptions& options, |
| 27 | const std::string& fileprefix, |
no test coverage detected