C++ wrapper for primal heuristics.
Definition in file objheur.cpp.
Go to the source code of this file.
Functions | |
| static | SCIP_DECL_HEURCOPY (heurCopyObj) |
| static | SCIP_DECL_HEURFREE (heurFreeObj) |
| static | SCIP_DECL_HEURINIT (heurInitObj) |
| static | SCIP_DECL_HEUREXIT (heurExitObj) |
| static | SCIP_DECL_HEURINITSOL (heurInitsolObj) |
| static | SCIP_DECL_HEUREXITSOL (heurExitsolObj) |
| static | SCIP_DECL_HEUREXEC (heurExecObj) |
| SCIP_RETCODE | SCIPincludeObjHeur (SCIP *scip, scip::ObjHeur *objheur, SCIP_Bool deleteobject) |
| scip::ObjHeur * | SCIPfindObjHeur (SCIP *scip, const char *name) |
| scip::ObjHeur * | SCIPgetObjHeur (SCIP *scip, SCIP_HEUR *heur) |
|
static |
copy method for primal heuristic plugins (called when SCIP copies plugins)
Definition at line 62 of file objheur.cpp.
References assert(), heurdata, NULL, SCIP_CALL, SCIP_OKAY, SCIPheurGetData(), SCIPincludeObjHeur(), and TRUE.
|
static |
destructor of primal heuristic to free user data (called when SCIP is exiting)
Definition at line 87 of file objheur.cpp.
References assert(), heurdata, NULL, SCIP_CALL, SCIP_OKAY, SCIPheurGetData(), and SCIPheurSetData().
|
static |
initialization method of primal heuristic (called after problem was transformed)
Definition at line 113 of file objheur.cpp.
References assert(), heurdata, NULL, SCIP_CALL, SCIP_OKAY, and SCIPheurGetData().
|
static |
deinitialization method of primal heuristic (called before transformed problem is freed)
Definition at line 131 of file objheur.cpp.
References assert(), heurdata, NULL, SCIP_CALL, SCIP_OKAY, and SCIPheurGetData().
|
static |
solving process initialization method of primal heuristic (called when branch and bound process is about to begin)
Definition at line 148 of file objheur.cpp.
References assert(), heurdata, NULL, SCIP_CALL, SCIP_OKAY, and SCIPheurGetData().
|
static |
solving process deinitialization method of primal heuristic (called before branch and bound process data is freed)
Definition at line 165 of file objheur.cpp.
References assert(), heurdata, NULL, SCIP_CALL, SCIP_OKAY, and SCIPheurGetData().
|
static |
execution method of primal heuristic
Definition at line 182 of file objheur.cpp.
References assert(), heurdata, NULL, result, SCIP_CALL, SCIP_OKAY, and SCIPheurGetData().
| SCIP_RETCODE SCIPincludeObjHeur | ( | SCIP * | scip, |
| scip::ObjHeur * | objheur, | ||
| SCIP_Bool | deleteobject ) |
creates the primal heuristic for the given primal heuristic object and includes it in SCIP
creates the primal heuristic for the given primal heuristic object and includes it in SCIP
The method should be called in one of the following ways:
| scip | SCIP data structure |
| objheur | primal heuristic object |
| deleteobject | should the primal heuristic object be deleted when heuristic is freed? |
Definition at line 204 of file objheur.cpp.
References assert(), heurdata, NULL, SCIP_Bool, SCIP_CALL, scip::ObjHeur::scip_desc_, scip::ObjHeur::scip_dispchar_, scip::ObjHeur::scip_freq_, scip::ObjHeur::scip_freqofs_, scip::ObjHeur::scip_maxdepth_, scip::ObjHeur::scip_name_, SCIP_OKAY, scip::ObjHeur::scip_priority_, scip::ObjHeur::scip_timingmask_, scip::ObjHeur::scip_usessubscip_, and SCIPincludeHeur().
Referenced by runSCIP(), and SCIP_DECL_HEURCOPY().
| scip::ObjHeur * SCIPfindObjHeur | ( | SCIP * | scip, |
| const char * | name ) |
returns the heur object of the given name, or 0 if not existing
| scip | SCIP data structure |
| name | name of primal heuristic |
Definition at line 233 of file objheur.cpp.
References assert(), heurdata, NULL, SCIPfindHeur(), and SCIPheurGetData().
| scip::ObjHeur * SCIPgetObjHeur | ( | SCIP * | scip, |
| SCIP_HEUR * | heur ) |
returns the heur object for the given primal heuristic
| scip | SCIP data structure |
| heur | primal heuristic |
Definition at line 252 of file objheur.cpp.
References assert(), heurdata, NULL, and SCIPheurGetData().