Detailed Description
statistics table
Definition at line 45 of file struct_table.h.
#include <struct_table.h>
Public Member Functions | |
SCIP_DECL_TABLECOPY ((*tablecopy)) | |
SCIP_DECL_TABLEFREE ((*tablefree)) | |
SCIP_DECL_TABLEINIT ((*tableinit)) | |
SCIP_DECL_TABLEEXIT ((*tableexit)) | |
SCIP_DECL_TABLEINITSOL ((*tableinitsol)) | |
SCIP_DECL_TABLEEXITSOL ((*tableexitsol)) | |
SCIP_DECL_TABLEOUTPUT ((*tableoutput)) | |
Data Fields | |
char * | name |
char * | desc |
SCIP_TABLEDATA * | tabledata |
int | position |
SCIP_STAGE | earlieststage |
SCIP_Bool | initialized |
SCIP_Bool | active |
Member Function Documentation
◆ SCIP_DECL_TABLECOPY()
SCIP_Table::SCIP_DECL_TABLECOPY | ( | * | tablecopy | ) |
copy method of statistics table or NULL if you don't want to copy your plugin into sub-SCIPs
◆ SCIP_DECL_TABLEFREE()
SCIP_Table::SCIP_DECL_TABLEFREE | ( | * | tablefree | ) |
destructor of statistics table
◆ SCIP_DECL_TABLEINIT()
SCIP_Table::SCIP_DECL_TABLEINIT | ( | * | tableinit | ) |
initialize statistics table
◆ SCIP_DECL_TABLEEXIT()
SCIP_Table::SCIP_DECL_TABLEEXIT | ( | * | tableexit | ) |
deinitialize statistics table
◆ SCIP_DECL_TABLEINITSOL()
SCIP_Table::SCIP_DECL_TABLEINITSOL | ( | * | tableinitsol | ) |
solving process initialization method of statistics table
◆ SCIP_DECL_TABLEEXITSOL()
SCIP_Table::SCIP_DECL_TABLEEXITSOL | ( | * | tableexitsol | ) |
solving process deinitialization method of statistics table
◆ SCIP_DECL_TABLEOUTPUT()
SCIP_Table::SCIP_DECL_TABLEOUTPUT | ( | * | tableoutput | ) |
output method
Field Documentation
◆ name
char* SCIP_Table::name |
name of statistics table
Definition at line 47 of file struct_table.h.
Referenced by SCIPtableExit(), SCIPtableGetName(), and SCIPtableInit().
◆ desc
char* SCIP_Table::desc |
description of statistics table
Definition at line 48 of file struct_table.h.
Referenced by SCIPtableGetDesc().
◆ tabledata
SCIP_TABLEDATA* SCIP_Table::tabledata |
statistics table data
Definition at line 56 of file struct_table.h.
Referenced by SCIPtableGetData(), and SCIPtableSetData().
◆ position
int SCIP_Table::position |
relative position of statistics table
Definition at line 57 of file struct_table.h.
Referenced by SCIPtableGetPosition().
◆ earlieststage
SCIP_STAGE SCIP_Table::earlieststage |
output of the statistics table is only printed from this stage onwards
Definition at line 58 of file struct_table.h.
Referenced by SCIPtableGetEarliestStage().
◆ initialized
SCIP_Bool SCIP_Table::initialized |
is statistics table initialized?
Definition at line 59 of file struct_table.h.
Referenced by SCIPtableExit(), SCIPtableInit(), and SCIPtableIsInitialized().
◆ active
SCIP_Bool SCIP_Table::active |
should statistics table be displayed to the screen?
Definition at line 60 of file struct_table.h.
Referenced by SCIPtableIsActive().