MCPcopy Create free account
hub / github.com/ERGO-Code/HiGHS / reportValuesIndices

Function reportValuesIndices

check/TestSort.cpp:45–54  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

43}
44
45void 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
56void checkIncreasingSort(const HighsInt num_sorted,
57 const vector<double>& values,

Callers 1

TestSort.cppFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected