type_conflict.h
Go to the documentation of this file.
34/*---+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----1----+----2*/
49typedef struct SCIP_Conflicthdlr SCIP_CONFLICTHDLR; /**< conflict handler to process conflict sets */
52typedef struct SCIP_ProofSet SCIP_PROOFSET; /**< set of variables and coefficients describing a proof-constraint of type a^Tx <= rhs */
65};
78};
113/** solving process initialization method of conflict handler (called when branch and bound process is about to begin)
115 * This method is called when the presolving was finished and the branch and bound process is about to begin.
122#define SCIP_DECL_CONFLICTINITSOL(x) SCIP_RETCODE x (SCIP* scip, SCIP_CONFLICTHDLR* conflicthdlr)
124/** solving process deinitialization method of conflict handler (called before branch and bound process data is freed)
133#define SCIP_DECL_CONFLICTEXITSOL(x) SCIP_RETCODE x (SCIP* scip, SCIP_CONFLICTHDLR* conflicthdlr)
138 * The conflict handler may update its data accordingly and create a constraint out of the conflict set.
139 * If the parameter "resolved" is set, the conflict handler should not create a constraint, because
141 * The bounds in the conflict set lead to a conflict (i.e. an infeasibility) when all enforced at the same time.
142 * Thus, a feasible conflict constraint must demand that at least one of the variables in the conflict
143 * set violates its corresponding bound, i.e., fulfills the negation of the bound change in the conflict set.
144 * For continuous variables, the negation has to be defined in a relaxed way: if, e.g., the bound in the conflict
147 * buffer, that may be modified at any time by SCIP. The user must copy the needed information from the
149 * (S)he should not keep a pointer to the array or pointers to the single bdchginfos in the array, because these
156 * - validnode : node at which the conflict constraint is valid (should be passed to SCIPaddConsNode())
160 * -.primalbound : the current primal bound, or -infininity if the conflict arises from an infeasible LP
162 * - local : is the conflict set only valid locally, i.e., should the constraint be created as local constraint?
170 * - SCIP_DIDNOTFIND : the conflict handler could not create a constraint out of the conflict set
173#define SCIP_DECL_CONFLICTEXEC(x) SCIP_RETCODE x (SCIP* scip, SCIP_CONFLICTHDLR* conflicthdlr, SCIP_NODE* node, \
174 SCIP_NODE* validnode, SCIP_BDCHGINFO** bdchginfos, SCIP_Real* relaxedbds, int nbdchginfos, SCIP_CONFTYPE conftype, \
175 SCIP_Bool cutoffinvolved, SCIP_Bool separate, SCIP_Bool local, SCIP_Bool dynamic, SCIP_Bool removable, \
common defines and data types used in all packages of SCIP
Definition: struct_conflict.h:69
Definition: struct_conflict.h:114
Definition: struct_conflict.h:50
Definition: struct_conflict.h:103
Definition: struct_conflict.h:91
struct SCIP_ConflicthdlrData SCIP_CONFLICTHDLRDATA
Definition: type_conflict.h:50
result codes for SCIP callback methods
type definitions for return codes for SCIP methods
type definitions for SCIP's main datastructure
type definitions for branch and bound tree