| 643 | } |
| 644 | |
| 645 | HighsInt Highs_getBasisTransposeSolve(const void* highs, const double* rhs, |
| 646 | double* solution_vector, |
| 647 | HighsInt* solution_nz, |
| 648 | HighsInt* solution_index) { |
| 649 | return (HighsInt)((Highs*)highs) |
| 650 | ->getBasisTransposeSolve(rhs, solution_vector, solution_nz, |
| 651 | solution_index); |
| 652 | } |
| 653 | |
| 654 | HighsInt Highs_getReducedRow(const void* highs, const HighsInt row, |
| 655 | double* row_vector, HighsInt* row_num_nz, |
no test coverage detected