All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
struct_tree.h
Go to the documentation of this file.
21 /*---+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----1----+----2*/
78 /** fork without LP solution, where bounds and constraints have been changed, and rows and columns were added */
88 /** fork with solved LP, where bounds and constraints have been changed, and rows and columns were added */
94 SCIP_Real lpobjval; /**< the LP objective value for that node, needed to compute the pseudo costs correctly */
103 /** fork with solved LP, where bounds and constraints have been changed, and rows and columns were removed and added */
109 SCIP_Real lpobjval; /**< the LP objective value for that node, needed to compute the pseudo costs correctly */
142 unsigned int reprop:1; /**< should propagation be applied again, if the node is on the active path? */
186 SCIP_Longint focuslpstateforklpcount; /**< LP number of last solved LP in current LP state fork, or -1 if unknown */
190 int nchildren; /**< number of children of focus node (number of used slots in children vector) */
192 int nsiblings; /**< number of siblings of focus node (number of used slots in siblings vector) */
196 int appliedeffectiverootdepth; /**< the effective root depth which was already enforced (that is constraint and bound changes were made global) */
197 int correctlpdepth; /**< depth to which current LP data corresponds to LP data of active path */
200 int repropsubtreecount; /**< cyclicly increased counter to create markers for subtree repropagation */
202 SCIP_Bool probingnodehaslp; /**< was the LP solved (at least once) in the current probing node? */
204 SCIP_Bool cutoffdelayed; /**< the treeCutoff() call was delayed because of diving and has to be executed */
207 SCIP_Bool probingloadlpistate;/**< must the LP state be reloaded because of a backtrack in probing? */
208 SCIP_Bool probinglpwasrelax; /**< was the LP a valid relaxation before we entered the probing mode? */
209 SCIP_Bool probingsolvedlp; /**< was the LP solved during probing mode, i.e., was SCIPsolveProbingLP() called? */
|