| 1101 | } |
| 1102 | |
| 1103 | HighsInt Highs_getColByName(const void* highs, const char* name, |
| 1104 | HighsInt* col) { |
| 1105 | HighsInt local_col; |
| 1106 | HighsInt retcode = (HighsInt)((Highs*)highs)->getColByName(name, local_col); |
| 1107 | *col = local_col; |
| 1108 | return retcode; |
| 1109 | } |
| 1110 | |
| 1111 | HighsInt Highs_getColIntegrality(const void* highs, const HighsInt col, |
| 1112 | HighsInt* integrality) { |