| 923 | } |
| 924 | |
| 925 | std::tuple<HighsStatus, std::string> highs_getRowName(Highs* h, |
| 926 | const HighsInt row) { |
| 927 | std::string name; |
| 928 | HighsStatus status = h->getRowName(row, name); |
| 929 | return std::make_tuple(status, name); |
| 930 | } |
| 931 | |
| 932 | std::tuple<HighsStatus, int> highs_getRowByName(Highs* h, |
| 933 | const std::string& name) { |
nothing calls this directly
no test coverage detected