| 199 | } |
| 200 | |
| 201 | HighsInt highsIntArraysEqual(const HighsInt dim, const HighsInt* array0, |
| 202 | const HighsInt* array1) { |
| 203 | for (HighsInt ix = 0; ix < dim; ix++) |
| 204 | if (array0[ix] != array1[ix]) return 0; |
| 205 | return 1; |
| 206 | } |
| 207 | |
| 208 | HighsInt doubleArraysEqual(const double dim, const double* array0, |
| 209 | const double* array1) { |