| 206 | } |
| 207 | |
| 208 | HighsInt doubleArraysEqual(const double dim, const double* array0, |
| 209 | const double* array1) { |
| 210 | for (HighsInt ix = 0; ix < dim; ix++) |
| 211 | if (array0[ix] != array1[ix]) return 0; |
| 212 | return 1; |
| 213 | } |
| 214 | |
| 215 | void assertDoubleValuesEqual(const char* name, const double is, |
| 216 | const double should_be) { |