| 1109 | } |
| 1110 | |
| 1111 | HighsInt Highs_getColIntegrality(const void* highs, const HighsInt col, |
| 1112 | HighsInt* integrality) { |
| 1113 | HighsVarType integrality_v; |
| 1114 | HighsInt retcode = |
| 1115 | (HighsInt)((Highs*)highs)->getColIntegrality(col, integrality_v); |
| 1116 | *integrality = HighsInt(integrality_v); |
| 1117 | return retcode; |
| 1118 | } |
| 1119 | |
| 1120 | HighsInt Highs_deleteColsByRange(void* highs, const HighsInt from_col, |
| 1121 | const HighsInt to_col) { |