| 748 | } |
| 749 | |
| 750 | HighsInt Highs_setSparseSolution(void* highs, const HighsInt num_entries, |
| 751 | const HighsInt* index, const double* value) { |
| 752 | return (HighsInt)((Highs*)highs)->setSolution(num_entries, index, value); |
| 753 | } |
| 754 | |
| 755 | HighsInt Highs_setCallback(void* highs, HighsCCallbackType user_callback, |
| 756 | void* user_callback_data) { |
no test coverage detected