struct_heur.h
Go to the documentation of this file.
22 /*---+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----1----+----2*/
45 SCIP_Real maxlpiterquot; /**< maximal fraction of diving LP iterations compared to node LP iterations */
46 SCIP_Real maxdiveubquot; /**< maximal quotient (curlowerbound - lowerbound)/(cutoffbound - lowerbound)
48 SCIP_Real maxdiveavgquot; /**< maximal quotient (curlowerbound - lowerbound)/(avglowerbound - lowerbound)
50 SCIP_Real maxdiveubquotnosol; /**< maximal UBQUOT when no solution was found yet (0.0: no limit) */
51 SCIP_Real maxdiveavgquotnosol;/**< maximal AVGQUOT when no solution was found yet (0.0: no limit) */
52 SCIP_Real lpresolvedomchgquot;/**< percentage of immediate domain changes during probing to trigger LP resolve */
58 SCIP_Longint totalnbacktracks; /**< the total number of backtracks during the execution of this dive set */
61 SCIP_Longint nconflictsfound; /**< the total number of added conflicts during the execution of this dive set */
72 SCIP_Bool onlylpbranchcands; /**< should only LP branching candidates be considered instead of the slower but
74 SCIP_DIVETYPE divetypemask; /**< bit mask that represents the supported dive types by this dive set */
75 SCIP_DECL_DIVESETGETSCORE((*divesetgetscore)); /**< method for candidate score and rounding direction */
82 SCIP_Longint nsolsfound; /**< number of feasible primal solutions found so far by this heuristic */
83 SCIP_Longint nbestsolsfound; /**< number of new best primal CIP solutions found so far by this heuristic */
86 SCIP_DECL_HEURCOPY ((*heurcopy)); /**< copy method of primal heuristic or NULL if you don't want to copy your plugin into sub-SCIPs */
90 SCIP_DECL_HEURINITSOL ((*heurinitsol)); /**< solving process initialization method of primal heuristic */
91 SCIP_DECL_HEUREXITSOL ((*heurexitsol)); /**< solving process deinitialization method of primal heuristic */
103 SCIP_HEURTIMING timingmask; /**< positions in the node solving loop where heuristic should be executed */
111 * the variable graph internally stores a mapping from the variables to the constraints in which they appear.
118 SCIP_HASHTABLE* visitedconss; /**< hash table that keeps a record of visited constraints during breadth-first search */
Definition: struct_misc.h:255
Definition: struct_sol.h:63
Definition: struct_cons.h:37
type definitions for primal heuristics
Definition: struct_heur.h:79
Definition: struct_heur.h:37
type definitions for clocks and timing issues
Definition: struct_misc.h:79
SCIP_DECL_DIVESETGETSCORE((*divesetgetscore))
Definition: struct_heur.h:115
common defines and data types used in all packages of SCIP
Definition: struct_clock.h:55