| 622 | } |
| 623 | |
| 624 | HighsInt Highs_getBasisInverseRow(const void* highs, const HighsInt row, |
| 625 | double* row_vector, HighsInt* row_num_nz, |
| 626 | HighsInt* row_index) { |
| 627 | return (HighsInt)((Highs*)highs) |
| 628 | ->getBasisInverseRow(row, row_vector, row_num_nz, row_index); |
| 629 | } |
| 630 | |
| 631 | HighsInt Highs_getBasisInverseCol(const void* highs, const HighsInt col, |
| 632 | double* col_vector, HighsInt* col_num_nz, |
no test coverage detected