C++ wrapper for display columns.
Definition in file objdisp.h.
Go to the source code of this file.
Functions | |
SCIP_RETCODE | SCIPincludeObjDisp (SCIP *scip, scip::ObjDisp *objdisp, SCIP_Bool deleteobject) |
scip::ObjDisp * | SCIPfindObjDisp (SCIP *scip, const char *name) |
scip::ObjDisp * | SCIPgetObjDisp (SCIP *scip, SCIP_DISP *disp) |
SCIP_RETCODE SCIPincludeObjDisp | ( | SCIP * | scip, |
scip::ObjDisp * | objdisp, | ||
SCIP_Bool | deleteobject | ||
) |
creates the display column for the given display column object and includes it in SCIP
The method should be called in one of the following ways:
creates the display column for the given display column object and includes it in SCIP
scip | SCIP data structure |
objdisp | display column object |
deleteobject | should the display column object be deleted when display column is freed? |
Definition at line 195 of file objdisp.cpp.
References SCIP_CALL, scip::ObjDisp::scip_desc_, SCIP_DISPSTATUS_AUTO, scip::ObjDisp::scip_header_, scip::ObjDisp::scip_name_, SCIP_OKAY, scip::ObjDisp::scip_position_, scip::ObjDisp::scip_priority_, scip::ObjDisp::scip_stripline_, scip::ObjDisp::scip_width_, and SCIPincludeDisp().
Referenced by SCIP_DECL_DISPCOPY(), and scip::ObjDisp::SCIP_DECL_DISPEXITSOL().
scip::ObjDisp* SCIPfindObjDisp | ( | SCIP * | scip, |
const char * | name | ||
) |
returns the display column object of the given name, or 0 if not existing
scip | SCIP data structure |
name | name of display column |
Definition at line 223 of file objdisp.cpp.
References SCIPdispGetData(), and SCIPfindDisp().
Referenced by scip::ObjDisp::SCIP_DECL_DISPEXITSOL().
scip::ObjDisp* SCIPgetObjDisp | ( | SCIP * | scip, |
SCIP_DISP * | disp | ||
) |
returns the display column object for the given display column
scip | SCIP data structure |
disp | display column |
Definition at line 242 of file objdisp.cpp.
References SCIPdispGetData().
Referenced by scip::ObjDisp::SCIP_DECL_DISPEXITSOL().