MCPcopy Create free account
hub / github.com/ERGO-Code/HiGHS / Highs_getRowByName

Function Highs_getRowByName

highs/interfaces/highs_c_api.cpp:1090–1096  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1088}
1089
1090HighsInt 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
1098HighsInt Highs_getColName(const void* highs, const HighsInt col, char* name) {
1099 return Highs_getHighsLpColOrRowName(highs, ((Highs*)highs)->getLp(), true,

Callers 1

testNamesFunction · 0.85

Calls 1

getRowByNameMethod · 0.80

Tested by 1

testNamesFunction · 0.68