C++ wrapper for statistics tables.
Definition in file objtable.cpp.
Go to the source code of this file.
Functions | |
static | SCIP_DECL_TABLECOPY (tableCopyObj) |
static | SCIP_DECL_TABLEFREE (tableFreeObj) |
static | SCIP_DECL_TABLEINIT (tableInitObj) |
static | SCIP_DECL_TABLEEXIT (tableExitObj) |
static | SCIP_DECL_TABLEINITSOL (tableInitsolObj) |
static | SCIP_DECL_TABLEEXITSOL (tableExitsolObj) |
static | SCIP_DECL_TABLEOUTPUT (tableOutputObj) |
SCIP_RETCODE | SCIPincludeObjTable (SCIP *scip, scip::ObjTable *objtable, SCIP_Bool deleteobject) |
scip::ObjTable * | SCIPfindObjTable (SCIP *scip, const char *name) |
scip::ObjTable * | SCIPgetObjTable (SCIP *scip, SCIP_TABLE *table) |
|
static |
copy method for statistics table plugins (called when SCIP copies plugins)
Definition at line 53 of file objtable.cpp.
References SCIP_CALL, SCIP_OKAY, SCIPincludeObjTable(), SCIPtableGetData(), and TRUE.
|
static |
destructor of statistics table to free user data (called when SCIP is exiting)
Definition at line 78 of file objtable.cpp.
References SCIP_CALL, SCIP_OKAY, SCIPtableGetData(), and SCIPtableSetData().
|
static |
initialization method of statistics table (called after problem was transformed)
Definition at line 104 of file objtable.cpp.
References SCIP_CALL, SCIP_OKAY, and SCIPtableGetData().
|
static |
deinitialization method of statistics table (called before transformed problem is freed)
Definition at line 122 of file objtable.cpp.
References SCIP_CALL, SCIP_OKAY, and SCIPtableGetData().
|
static |
solving process initialization method of statistics table (called when branch and bound process is about to begin)
Definition at line 139 of file objtable.cpp.
References SCIP_CALL, SCIP_OKAY, and SCIPtableGetData().
|
static |
solving process deinitialization method of statistics table (called before branch and bound process data is freed)
Definition at line 156 of file objtable.cpp.
References SCIP_CALL, SCIP_OKAY, and SCIPtableGetData().
|
static |
output method of statistics table to output file stream 'file'
Definition at line 173 of file objtable.cpp.
References SCIP_CALL, SCIP_OKAY, and SCIPtableGetData().
SCIP_RETCODE SCIPincludeObjTable | ( | SCIP * | scip, |
scip::ObjTable * | objtable, | ||
SCIP_Bool | deleteobject | ||
) |
creates the statistics table for the given statistics table object and includes it in SCIP
scip | SCIP data structure |
objtable | statistics table object |
deleteobject | should the statistics table object be deleted when statistics table is freed? |
Definition at line 195 of file objtable.cpp.
References SCIP_CALL, scip::ObjTable::scip_desc_, scip::ObjTable::scip_earlieststage_, scip::ObjTable::scip_name_, SCIP_OKAY, scip::ObjTable::scip_position_, SCIPincludeTable(), and TRUE.
Referenced by SCIP_DECL_TABLECOPY(), and scip::ObjTable::SCIP_DECL_TABLEEXITSOL().
scip::ObjTable* SCIPfindObjTable | ( | SCIP * | scip, |
const char * | name | ||
) |
returns the statistics table object of the given name, or 0 if not existing
scip | SCIP data structure |
name | name of statistics table |
Definition at line 220 of file objtable.cpp.
References SCIPfindTable(), and SCIPtableGetData().
Referenced by scip::ObjTable::SCIP_DECL_TABLEEXITSOL().
scip::ObjTable* SCIPgetObjTable | ( | SCIP * | scip, |
SCIP_TABLE * | table | ||
) |
returns the statistics table object for the given statistics table
scip | SCIP data structure |
table | statistics table |
Definition at line 239 of file objtable.cpp.
References SCIPtableGetData().
Referenced by scip::ObjTable::SCIP_DECL_TABLEEXITSOL().