eventhdlr for best solution found
Definition in file event_bestsol.c.
Go to the source code of this file.
Macros | |
#define | EVENTHDLR_NAME "bestsol" |
#define | EVENTHDLR_DESC "event handler for best solutions found" |
Functions | |
static | SCIP_DECL_EVENTCOPY (eventCopyBestsol) |
static | SCIP_DECL_EVENTINIT (eventInitBestsol) |
static | SCIP_DECL_EVENTEXIT (eventExitBestsol) |
static | SCIP_DECL_EVENTEXEC (eventExecBestsol) |
SCIP_RETCODE | SCIPincludeEventHdlrBestsol (SCIP *scip) |
#define EVENTHDLR_NAME "bestsol" |
Definition at line 28 of file event_bestsol.c.
Referenced by SCIP_DECL_EVENTCOPY(), SCIP_DECL_EVENTEXEC(), SCIP_DECL_EVENTEXIT(), SCIP_DECL_EVENTINIT(), and SCIPincludeEventHdlrBestsol().
#define EVENTHDLR_DESC "event handler for best solutions found" |
Definition at line 29 of file event_bestsol.c.
Referenced by SCIPincludeEventHdlrBestsol().
|
static |
copy method for event handler plugins (called when SCIP copies plugins)
Definition at line 33 of file event_bestsol.c.
References EVENTHDLR_NAME, SCIP_CALL, SCIP_OKAY, SCIPeventhdlrGetName(), and SCIPincludeEventHdlrBestsol().
|
static |
initialization method of event handler (called after problem was transformed)
Definition at line 47 of file event_bestsol.c.
References EVENTHDLR_NAME, SCIP_CALL, SCIP_EVENTTYPE_BESTSOLFOUND, SCIP_OKAY, SCIPcatchEvent(), and SCIPeventhdlrGetName().
|
static |
deinitialization method of event handler (called before transformed problem is freed)
Definition at line 61 of file event_bestsol.c.
References EVENTHDLR_NAME, SCIP_CALL, SCIP_EVENTTYPE_BESTSOLFOUND, SCIP_OKAY, SCIPdropEvent(), and SCIPeventhdlrGetName().
|
static |
execution method of event handler
Definition at line 75 of file event_bestsol.c.
References EVENTHDLR_NAME, SCIP_EVENTTYPE_BESTSOLFOUND, SCIP_OKAY, SCIP_Real, SCIPdebugMsg, SCIPeventGetType(), SCIPeventhdlrGetName(), SCIPgetBestSol(), SCIPgetProbName(), SCIPgetSolOrigObj(), and SCIPinfoMessage().
SCIP_RETCODE SCIPincludeEventHdlrBestsol | ( | SCIP * | scip | ) |
includes event handler for best solution found
scip | SCIP data structure |
Definition at line 100 of file event_bestsol.c.
References EVENTHDLR_DESC, EVENTHDLR_NAME, SCIP_CALL, SCIP_OKAY, SCIPincludeEventhdlrBasic(), SCIPsetEventhdlrCopy(), SCIPsetEventhdlrExit(), and SCIPsetEventhdlrInit().
Referenced by runShell(), and SCIP_DECL_EVENTCOPY().