All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
struct_history.h
Go to the documentation of this file.
21 /*---+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----1----+----2*/
34 /** branching and inference history information for single variable independent of the domain value */
37 SCIP_Real pscostcount[2]; /**< nr of (partial) summands in down/upwards pseudo costs (may be fractional) */
40 SCIP_Real conflengthsum[2]; /**< overall length of all active conflicts for which the variable gave reason */
41 SCIP_Real inferencesum[2]; /**< degree of how often branching on the variable lead to inference of another bound */
42 SCIP_Real cutoffsum[2]; /**< degree of how often branching on the variable lead to an infeasible sub problem */
43 SCIP_Longint nactiveconflicts[2];/**< number of active conflicts for which the variable gave reason */
44 SCIP_Longint nbranchings[2]; /**< nr of times, the variable changed its bounds due to branching */
45 SCIP_Longint branchdepthsum[2]; /**< sum of depth levels, at which the branching bound changes took place */
48 /** branching and inference history information for single variable dependent on the domain value */
51 SCIP_HISTORY** histories; /**< branching and inference history information for individual domain values */
|