No commas in test case name.
| 13 | |
| 14 | // No commas in test case name. |
| 15 | void getRandomValues(const HighsInt num_values, vector<double>& values, |
| 16 | vector<HighsInt>& indices) { |
| 17 | // Set up a vector of random number and their corresponding indices |
| 18 | HighsRandom random; |
| 19 | for (HighsInt ix = 0; ix < num_values; ix++) { |
| 20 | values[1 + ix] = random.fraction(); |
| 21 | indices[1 + ix] = ix; |
| 22 | } |
| 23 | } |
| 24 | |
| 25 | void doFullSort(const HighsInt num_values, vector<double>& values, |
| 26 | vector<HighsInt>& indices) { |