Scippy

    SCIP

    Solving Constraint Integer Programs

    SCIP_Table Struct Reference

    Detailed Description

    statistics table

    Definition at line 46 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))
     
     SCIP_DECL_TABLECOLLECT ((*tablecollect))
     

    Data Fields

    char * name
     
    char * desc
     
    SCIP_TABLEDATAtabledata
     
    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

    ◆ SCIP_DECL_TABLECOLLECT()

    SCIP_Table::SCIP_DECL_TABLECOLLECT ( tablecollect)

    data collection method

    Field Documentation

    ◆ name

    char* SCIP_Table::name

    name of statistics table

    Definition at line 48 of file struct_table.h.

    Referenced by SCIPtableExit(), SCIPtableGetName(), SCIPtableInit(), and SCIPtableOutput().

    ◆ desc

    char* SCIP_Table::desc

    description of statistics table

    Definition at line 49 of file struct_table.h.

    Referenced by SCIPtableCollect(), and SCIPtableGetDesc().

    ◆ tabledata

    SCIP_TABLEDATA* SCIP_Table::tabledata

    statistics table data

    Definition at line 58 of file struct_table.h.

    Referenced by SCIPtableGetData(), and SCIPtableSetData().

    ◆ position

    int SCIP_Table::position

    relative position of statistics table

    Definition at line 59 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 60 of file struct_table.h.

    Referenced by SCIPtableGetEarliestStage().

    ◆ initialized

    SCIP_Bool SCIP_Table::initialized

    is statistics table initialized?

    Definition at line 61 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 62 of file struct_table.h.

    Referenced by SCIPtableIsActive().