pub unsafe extern "C" fn Highs_getDoubleOptionValues(
    highs: *const c_void,
    option: *const c_char,
    current_value: *mut f64,
    min_value: *mut f64,
    max_value: *mut f64,
    default_value: *mut f64
) -> HighsInt
Expand description

Get the current and default values of a double 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.