pub unsafe extern "C" fn SCIPincludePropBasic(
scip: *mut SCIP,
propptr: *mut *mut SCIP_PROP,
name: *const c_char,
desc: *const c_char,
priority: c_int,
freq: c_int,
delay: c_uint,
timingmask: SCIP_PROPTIMING,
propexec: Option<unsafe extern "C" fn(scip: *mut SCIP, prop: *mut SCIP_PROP, proptiming: SCIP_PROPTIMING, result: *mut SCIP_RESULT) -> SCIP_RETCODE>,
propdata: *mut SCIP_PROPDATA,
) -> SCIP_RETCODEExpand description
creates a propagator and includes it in SCIP. All non-fundamental (or optional) callbacks will be set to NULL. Optional callbacks can be set via specific setter functions, see SCIPsetPropInit(), SCIPsetPropExit(), SCIPsetPropCopy(), SCIPsetPropFree(), SCIPsetPropInitsol(), SCIPsetPropExitsol(), SCIPsetPropInitpre(), SCIPsetPropExitpre(), SCIPsetPropPresol(), and SCIPsetPropResprop().
@pre This method can be called if SCIP is in one of the following stages: - \ref SCIP_STAGE_INIT - \ref SCIP_STAGE_PROBLEM
@note if you want to set all callbacks with a single method call, consider using SCIPincludeProp() instead