pub unsafe extern "C" fn Highs_getIntOptionValues(
highs: *const c_void,
option: *const c_char,
current_value: *mut HighsInt,
min_value: *mut HighsInt,
max_value: *mut HighsInt,
default_value: *mut HighsInt,
) -> HighsIntExpand description
Get the current and default values of a HighsInt option
@param highs A pointer to the Highs instance. @param current_value A pointer to the current value of the option. @param min_value A pointer to the minimum value of the option. @param max_value A pointer to the maximum value of the option. @param default_value A pointer to the default value of the option.
@returns A kHighsStatus constant indicating whether the call succeeded.