SCIPaddLongintParam

Function SCIPaddLongintParam 

Source
pub unsafe extern "C" fn SCIPaddLongintParam(
    scip: *mut SCIP,
    name: *const c_char,
    desc: *const c_char,
    valueptr: *mut c_longlong,
    isadvanced: c_uint,
    defaultvalue: c_longlong,
    minvalue: c_longlong,
    maxvalue: c_longlong,
    paramchgd: Option<unsafe extern "C" fn(scip: *mut SCIP, param: *mut SCIP_PARAM) -> SCIP_RETCODE>,
    paramdata: *mut SCIP_PARAMDATA,
) -> SCIP_RETCODE
Expand description

creates a SCIP_Longint parameter, sets it to its default value, and adds it to the parameter set

@return \ref SCIP_OKAY is returned if everything worked. Otherwise a suitable error code is passed. See \ref SCIP_Retcode “SCIP_RETCODE” for a complete list of error codes.