| 1088 | } |
| 1089 | |
| 1090 | HighsInt Highs_getRowByName(const void* highs, const char* name, |
| 1091 | HighsInt* row) { |
| 1092 | HighsInt local_row; |
| 1093 | HighsInt retcode = (HighsInt)((Highs*)highs)->getRowByName(name, local_row); |
| 1094 | *row = local_row; |
| 1095 | return retcode; |
| 1096 | } |
| 1097 | |
| 1098 | HighsInt Highs_getColName(const void* highs, const HighsInt col, char* name) { |
| 1099 | return Highs_getHighsLpColOrRowName(highs, ((Highs*)highs)->getLp(), true, |