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 */
53typedef struct SCIP_ConflictRow SCIP_CONFLICTROW; /**< conflict row of type lhs <= a^Tx, semi-sparse representation */
67};
80};
115/** solving process initialization method of conflict handler (called when branch and bound process is about to begin)
117 * This method is called when the presolving was finished and the branch and bound process is about to begin.
124#define SCIP_DECL_CONFLICTINITSOL(x) SCIP_RETCODE x (SCIP* scip, SCIP_CONFLICTHDLR* conflicthdlr)
126/** solving process deinitialization method of conflict handler (called before branch and bound process data is freed)
135#define SCIP_DECL_CONFLICTEXITSOL(x) SCIP_RETCODE x (SCIP* scip, SCIP_CONFLICTHDLR* conflicthdlr)
140 * The conflict handler may update its data accordingly and create a constraint out of the conflict set.
141 * If the parameter "resolved" is set, the conflict handler should not create a constraint, because
143 * The bounds in the conflict set lead to a conflict (i.e. an infeasibility) when all enforced at the same time.
144 * Thus, a feasible conflict constraint must demand that at least one of the variables in the conflict
145 * set violates its corresponding bound, i.e., fulfills the negation of the bound change in the conflict set.
146 * For continuous variables, the negation has to be defined in a relaxed way: if, e.g., the bound in the conflict
149 * buffer, that may be modified at any time by SCIP. The user must copy the needed information from the
151 * (S)he should not keep a pointer to the array or pointers to the single bdchginfos in the array, because these
158 * - validnode : node at which the conflict constraint is valid (should be passed to SCIPaddConsNode())
162 * -.primalbound : the current primal bound, or -infininity if the conflict arises from an infeasible LP
164 * - local : is the conflict set only valid locally, i.e., should the constraint be created as local constraint?
172 * - SCIP_DIDNOTFIND : the conflict handler could not create a constraint out of the conflict set
175#define SCIP_DECL_CONFLICTEXEC(x) SCIP_RETCODE x (SCIP* scip, SCIP_CONFLICTHDLR* conflicthdlr, SCIP_NODE* node, \
176 SCIP_NODE* validnode, SCIP_BDCHGINFO** bdchginfos, SCIP_Real* relaxedbds, int nbdchginfos, SCIP_CONFTYPE conftype, \
177 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:105
Definition: struct_conflict.h:69
Definition: struct_conflict.h:137
Definition: struct_conflict.h:50
Definition: struct_conflict.h:126
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