| 636 | } |
| 637 | |
| 638 | HighsInt Highs_getBasisSolve(const void* highs, const double* rhs, |
| 639 | double* solution_vector, HighsInt* solution_num_nz, |
| 640 | HighsInt* solution_index) { |
| 641 | return (HighsInt)((Highs*)highs) |
| 642 | ->getBasisSolve(rhs, solution_vector, solution_num_nz, solution_index); |
| 643 | } |
| 644 | |
| 645 | HighsInt Highs_getBasisTransposeSolve(const void* highs, const double* rhs, |
| 646 | double* solution_vector, |
no test coverage detected