Function scip_sys::SCIPincludeTable

source ·
pub unsafe extern "C" fn SCIPincludeTable(
    scip: *mut SCIP,
    name: *const c_char,
    desc: *const c_char,
    active: c_uint,
    tablecopy: Option<unsafe extern "C" fn(scip: *mut SCIP, table: *mut SCIP_TABLE) -> SCIP_RETCODE>,
    tablefree: Option<unsafe extern "C" fn(scip: *mut SCIP, table: *mut SCIP_TABLE) -> SCIP_RETCODE>,
    tableinit: Option<unsafe extern "C" fn(scip: *mut SCIP, table: *mut SCIP_TABLE) -> SCIP_RETCODE>,
    tableexit: Option<unsafe extern "C" fn(scip: *mut SCIP, table: *mut SCIP_TABLE) -> SCIP_RETCODE>,
    tableinitsol: Option<unsafe extern "C" fn(scip: *mut SCIP, table: *mut SCIP_TABLE) -> SCIP_RETCODE>,
    tableexitsol: Option<unsafe extern "C" fn(scip: *mut SCIP, table: *mut SCIP_TABLE) -> SCIP_RETCODE>,
    tableoutput: Option<unsafe extern "C" fn(scip: *mut SCIP, table: *mut SCIP_TABLE, file: *mut FILE) -> SCIP_RETCODE>,
    tabledata: *mut SCIP_TABLEDATA,
    position: c_int,
    earlieststage: SCIP_STAGE
) -> SCIP_RETCODE
Expand description

creates a statistics table and includes it in SCIP