| 18 | #include "util/HighsHash.h" |
| 19 | |
| 20 | HighsStatus assessMatrix(const HighsLogOptions& log_options, |
| 21 | const std::string& matrix_name, const HighsInt vec_dim, |
| 22 | const HighsInt num_vec, vector<HighsInt>& matrix_start, |
| 23 | vector<HighsInt>& matrix_index, |
| 24 | vector<double>& matrix_value, |
| 25 | const double small_matrix_value, |
| 26 | const double large_matrix_value, |
| 27 | const bool sum_duplicates) { |
| 28 | vector<HighsInt> matrix_p_end; |
| 29 | const bool partitioned = false; |
| 30 | return assessMatrix(log_options, matrix_name, vec_dim, num_vec, partitioned, |
| 31 | matrix_start, matrix_p_end, matrix_index, matrix_value, |
| 32 | small_matrix_value, large_matrix_value, sum_duplicates); |
| 33 | } |
| 34 | |
| 35 | HighsStatus assessMatrix(const HighsLogOptions& log_options, |
| 36 | const std::string& matrix_name, const HighsInt vec_dim, |
no test coverage detected