type_branch.h
Go to the documentation of this file.
42/*---+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----1----+----2*/
58typedef struct SCIP_Treemodel SCIP_TREEMODEL; /**< parameter storage for the Treemodel branching rules */
93/** solving process initialization method of branching rule (called when branch and bound process is about to begin)
95 * This method is called when the presolving was finished and the branch and bound process is about to begin.
104/** solving process deinitialization method of branching rule (called before branch and bound process data is freed)
120 * - allowaddcons : is the branching rule allowed to add constraints to the current node in order to cut off the
124 * possible return values for *result (if more than one applies, the first in the list should be used):
126 * - SCIP_CONSADDED : an additional constraint (e.g. a conflict constraint) was generated; this result code must not be
134#define SCIP_DECL_BRANCHEXECLP(x) SCIP_RETCODE x (SCIP* scip, SCIP_BRANCHRULE* branchrule, SCIP_Bool allowaddcons, SCIP_RESULT* result)
142 * - allowaddcons : is the branching rule allowed to add constraints to the current node in order to cut off the
146 * possible return values for *result (if more than one applies, the first in the list should be used):
148 * - SCIP_CONSADDED : an additional constraint (e.g. a conflict constraint) was generated; this result code must not be
155#define SCIP_DECL_BRANCHEXECEXT(x) SCIP_RETCODE x (SCIP* scip, SCIP_BRANCHRULE* branchrule, SCIP_Bool allowaddcons, SCIP_RESULT* result)
163 * - allowaddcons : is the branching rule allowed to add constraints to the current node in order to cut off the
167 * possible return values for *result (if more than one applies, the first in the list should be used):
169 * - SCIP_CONSADDED : an additional constraint (e.g. a conflict constraint) was generated; this result code must not be
176#define SCIP_DECL_BRANCHEXECPS(x) SCIP_RETCODE x (SCIP* scip, SCIP_BRANCHRULE* branchrule, SCIP_Bool allowaddcons, SCIP_RESULT* result)
common defines and data types used in all packages of SCIP
Definition: struct_branch.h:47
Definition: struct_branch.h:79
Definition: treemodel.c:94
result codes for SCIP callback methods
type definitions for SCIP's main datastructure