C++ wrapper for event handlers.
Definition in file objeventhdlr.h.
Go to the source code of this file.
Functions | |
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) |
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
The method should be called in one of the following ways:
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 eventhdlristic is freed? |
Definition at line 212 of file objeventhdlr.cpp.
References SCIP_CALL, scip::ObjEventhdlr::scip_desc_, scip::ObjEventhdlr::scip_name_, SCIP_OKAY, and SCIPincludeEventhdlr().
Referenced by runSCIP(), SCIP_DECL_EVENTCOPY(), and scip::ObjEventhdlr::SCIP_DECL_EVENTDELETE().
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 239 of file objeventhdlr.cpp.
References SCIPeventhdlrGetData(), and SCIPfindEventhdlr().
Referenced by scip::ObjEventhdlr::SCIP_DECL_EVENTDELETE().
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 258 of file objeventhdlr.cpp.
References SCIPeventhdlrGetData().
Referenced by scip::ObjEventhdlr::SCIP_DECL_EVENTDELETE().