Detailed Descriptionnode selector for hybrid best estimate / best bound search Definition in file nodesel_hybridestim.c. Go to the source code of this file.
Macro Definition Documentation
Definition at line 29 of file nodesel_hybridestim.c. Referenced by SCIPincludeNodeselHybridestim().
Definition at line 30 of file nodesel_hybridestim.c. Referenced by SCIPincludeNodeselHybridestim().
Definition at line 31 of file nodesel_hybridestim.c. Referenced by SCIPincludeNodeselHybridestim().
Definition at line 32 of file nodesel_hybridestim.c. Referenced by SCIPincludeNodeselHybridestim().
minimal plunging depth, before new best node may be selected (-1 for dynamic setting) Definition at line 39 of file nodesel_hybridestim.c. Referenced by SCIPincludeNodeselHybridestim().
maximal plunging depth, before new best node is forced to be selected (-1 for dynamic setting) Definition at line 40 of file nodesel_hybridestim.c. Referenced by SCIPincludeNodeselHybridestim().
maximal quotient (curlowerbound - lowerbound)/(cutoffbound - lowerbound) where plunging is performed Definition at line 41 of file nodesel_hybridestim.c. Referenced by SCIPincludeNodeselHybridestim().
frequency at which the best node instead of the hybrid best estimate / best bound is selected (0: never) Definition at line 44 of file nodesel_hybridestim.c. Referenced by SCIPincludeNodeselHybridestim().
weight of estimate value in node selection score (0: pure best bound search, 1: pure best estimate search) Definition at line 45 of file nodesel_hybridestim.c. Referenced by SCIPincludeNodeselHybridestim(). Function Documentationreturns a weighted sum of the node's lower bound and estimate value
Definition at line 72 of file nodesel_hybridestim.c. References SCIP_DECL_NODESELCOPY(), SCIPnodeGetEstimate(), and SCIPnodeGetLowerbound().
copy method for node selector plugins (called when SCIP copies plugins) Definition at line 87 of file nodesel_hybridestim.c. Referenced by getNodeselScore().
destructor of node selector to free user data (called when SCIP is exiting) Definition at line 101 of file nodesel_hybridestim.c.
node selection method of node selector Definition at line 121 of file nodesel_hybridestim.c.
node comparison method of node selector Definition at line 254 of file nodesel_hybridestim.c.
creates the node selector for hybrid best estimate / best bound search and includes it in SCIP
Definition at line 315 of file nodesel_hybridestim.c. References BESTNODEFREQ, ESTIMWEIGHT, FALSE, MAXPLUNGEDEPTH, MAXPLUNGEQUOT, MINPLUNGEDEPTH, NODESEL_DESC, NODESEL_MEMSAVEPRIORITY, NODESEL_NAME, NODESEL_STDPRIORITY, NULL, SCIP_CALL, SCIP_OKAY, SCIP_REAL_MAX, SCIPaddIntParam(), SCIPaddRealParam(), SCIPallocMemory, SCIPincludeNodeselBasic(), SCIPsetNodeselCopy(), SCIPsetNodeselFree(), and TRUE. Referenced by SCIPincludeDefaultPlugins(). |