| 659 | } |
| 660 | |
| 661 | HighsInt Highs_getReducedColumn(const void* highs, const HighsInt col, |
| 662 | double* col_vector, HighsInt* col_num_nz, |
| 663 | HighsInt* col_index) { |
| 664 | return (HighsInt)((Highs*)highs) |
| 665 | ->getReducedColumn(col, col_vector, col_num_nz, col_index); |
| 666 | } |
| 667 | |
| 668 | HighsInt Highs_setBasis(void* highs, const HighsInt* col_status, |
| 669 | const HighsInt* row_status) { |
no test coverage detected