| 23 | } |
| 24 | |
| 25 | void doFullSort(const HighsInt num_values, vector<double>& values, |
| 26 | vector<HighsInt>& indices) { |
| 27 | // Sort the vector of random number and their corresponding indices |
| 28 | maxheapsort(values.data(), indices.data(), num_values); |
| 29 | } |
| 30 | |
| 31 | void doAddSort(HighsInt& num_values_sorted, |
| 32 | const HighsInt& max_num_values_sorted, |
no test coverage detected