C++ wrapper for event handlers.
Definition in file objeventhdlr.cpp.
Go to the source code of this file.
Functions | |
| static | SCIP_DECL_EVENTCOPY (eventhdlrCopyObj) |
| static | SCIP_DECL_EVENTFREE (eventhdlrFreeObj) |
| static | SCIP_DECL_EVENTINIT (eventhdlrInitObj) |
| static | SCIP_DECL_EVENTEXIT (eventhdlrExitObj) |
| static | SCIP_DECL_EVENTINITSOL (eventhdlrInitsolObj) |
| static | SCIP_DECL_EVENTEXITSOL (eventhdlrExitsolObj) |
| static | SCIP_DECL_EVENTDELETE (eventhdlrDeleteObj) |
| static | SCIP_DECL_EVENTEXEC (eventhdlrExecObj) |
| SCIP_RETCODE | SCIPincludeObjEventhdlr (SCIP *scip, scip::ObjEventhdlr *objeventhdlr, SCIP_Bool deleteobject) |
| scip::ObjEventhdlr * | SCIPfindObjEventhdlr (SCIP *scip, const char *name) |
| scip::ObjEventhdlr * | SCIPgetObjEventhdlr (SCIP *scip, SCIP_EVENTHDLR *eventhdlr) |
|
static |
copy method for event handler plugins (called when SCIP copies plugins)
Definition at line 62 of file objeventhdlr.cpp.
References assert(), NULL, SCIP_CALL, SCIP_OKAY, SCIPeventhdlrGetData(), SCIPincludeObjEventhdlr(), and TRUE.
|
static |
destructor of event handler to free user data (called when SCIP is exiting)
Definition at line 87 of file objeventhdlr.cpp.
References assert(), NULL, SCIP_CALL, SCIP_OKAY, SCIPeventhdlrGetData(), and SCIPeventhdlrSetData().
|
static |
initialization method of event handler (called after problem was transformed)
Definition at line 113 of file objeventhdlr.cpp.
References assert(), NULL, SCIP_CALL, SCIP_OKAY, and SCIPeventhdlrGetData().
|
static |
deinitialization method of event handler (called before transformed problem is freed)
Definition at line 131 of file objeventhdlr.cpp.
References assert(), NULL, SCIP_CALL, SCIP_OKAY, and SCIPeventhdlrGetData().
|
static |
solving process initialization method of event handler (called when branch and bound process is about to begin)
Definition at line 148 of file objeventhdlr.cpp.
References assert(), NULL, SCIP_CALL, SCIP_OKAY, and SCIPeventhdlrGetData().
|
static |
solving process deinitialization method of event handler (called before branch and bound process data is freed)
Definition at line 165 of file objeventhdlr.cpp.
References assert(), NULL, SCIP_CALL, SCIP_OKAY, and SCIPeventhdlrGetData().
|
static |
frees specific constraint data
Definition at line 182 of file objeventhdlr.cpp.
References assert(), NULL, SCIP_CALL, SCIP_OKAY, and SCIPeventhdlrGetData().
|
static |
execution method of event handler
Definition at line 199 of file objeventhdlr.cpp.
References assert(), NULL, SCIP_CALL, SCIP_OKAY, and SCIPeventhdlrGetData().
| SCIP_RETCODE SCIPincludeObjEventhdlr | ( | SCIP * | scip, |
| scip::ObjEventhdlr * | objeventhdlr, | ||
| SCIP_Bool | deleteobject ) |
creates the event handler for the given event handler object and includes it in SCIP
| scip | SCIP data structure |
| objeventhdlr | event handler object |
| deleteobject | should the event handler object be deleted when eventhdlr is freed? |
Definition at line 221 of file objeventhdlr.cpp.
References assert(), NULL, SCIP_Bool, SCIP_CALL, scip::ObjEventhdlr::scip_desc_, scip::ObjEventhdlr::scip_name_, SCIP_OKAY, and SCIPincludeEventhdlr().
Referenced by runSCIP(), and SCIP_DECL_EVENTCOPY().
| scip::ObjEventhdlr * SCIPfindObjEventhdlr | ( | SCIP * | scip, |
| const char * | name ) |
returns the eventhdlr object of the given name, or 0 if not existing
| scip | SCIP data structure |
| name | name of event handler |
Definition at line 248 of file objeventhdlr.cpp.
References assert(), NULL, SCIPeventhdlrGetData(), and SCIPfindEventhdlr().
| scip::ObjEventhdlr * SCIPgetObjEventhdlr | ( | SCIP * | scip, |
| SCIP_EVENTHDLR * | eventhdlr ) |
returns the eventhdlr object for the given event handler
| scip | SCIP data structure |
| eventhdlr | event handler |
Definition at line 267 of file objeventhdlr.cpp.
References assert(), NULL, and SCIPeventhdlrGetData().