| 43 | } |
| 44 | |
| 45 | void reportValuesIndices(const HighsInt num_values, |
| 46 | const vector<double>& values, |
| 47 | const vector<HighsInt>& indices) { |
| 48 | if (!dev_run) return; |
| 49 | printf("\n Ix Value Index\n"); |
| 50 | for (HighsInt ix = 1; ix <= num_values; ix++) { |
| 51 | printf("%4" HIGHSINT_FORMAT " %10.8f %4" HIGHSINT_FORMAT "\n", ix, |
| 52 | values[ix], indices[ix]); |
| 53 | } |
| 54 | } |
| 55 | |
| 56 | void checkIncreasingSort(const HighsInt num_sorted, |
| 57 | const vector<double>& values, |