| 629 | } |
| 630 | |
| 631 | HighsInt Highs_getBasisInverseCol(const void* highs, const HighsInt col, |
| 632 | double* col_vector, HighsInt* col_num_nz, |
| 633 | HighsInt* col_index) { |
| 634 | return (HighsInt)((Highs*)highs) |
| 635 | ->getBasisInverseCol(col, col_vector, col_num_nz, col_index); |
| 636 | } |
| 637 | |
| 638 | HighsInt Highs_getBasisSolve(const void* highs, const double* rhs, |
| 639 | double* solution_vector, HighsInt* solution_num_nz, |
no test coverage detected