pub unsafe extern "C" fn SCIPincludeIISfinderBasic(
scip: *mut SCIP,
iisfinder: *mut *mut SCIP_IISFINDER,
name: *const c_char,
desc: *const c_char,
priority: c_int,
iisfinderexec: Option<unsafe extern "C" fn(iis: *mut SCIP_IIS, iisfinder: *mut SCIP_IISFINDER, result: *mut SCIP_RESULT) -> SCIP_RETCODE>,
iisfinderdata: *mut SCIP_IISFINDERDATA,
) -> SCIP_RETCODEExpand description
Creates an IIS finder and includes it in SCIP with its most fundamental callbacks.
All non-fundamental (or optional) callbacks as, e.g., copy and free callbacks, will be set to NULL. Optional callbacks can be set via specific setter functions, see SCIPsetIISfinderCopy() and SCIPsetIISfinderFree(),
@note if you want to set all callbacks with a single method call, consider using SCIPincludeIISfinder() instead