cons_knapsack.h
Go to the documentation of this file.
18 * @brief Constraint handler for knapsack constraints of the form \f$a^T x \le b\f$, x binary and \f$a \ge 0\f$.
25 /*---+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----1----+----2*/
60 * This constraint handler handles a special type of linear constraints, namely knapsack constraints.
65 * with non-negative integer coefficients \f$a_i\f$, integer right-hand side \f$b\f$, and binary variables \f$x_i\f$.
70 * @note the constraint gets captured, hence at one point you have to release it using the method SCIPreleaseCons()
101 SCIP_Bool stickingatnode /**< should the constraint always be kept at the node where it was added, even
107 * in its most basic version, i. e., all constraint flags are set to their basic value as explained for the
108 * method SCIPcreateConsKnapsack(); all flags can be set via SCIPsetConsFLAGNAME-methods in scip.h
112 * @note the constraint gets captured, hence at one point you have to release it using the method SCIPreleaseCons()
159 /** gets the array of variables in the knapsack constraint; the user must not modify this array! */
166 /** gets the array of weights in the knapsack constraint; the user must not modify this array! */
187 /** returns the linear relaxation of the given knapsack constraint; may return NULL if no LP row was yet created;
199 * @note in case you provide the solitems or nonsolitems array you also have to provide the counter part, as well
223 /** solves knapsack problem in maximization form approximately by solving the LP-relaxation of the problem using Dantzig's
224 * method and rounding down the solution; if needed, one can provide arrays to store all selected items and all not
258 /* relaxes given general linear constraint into a knapsack constraint and separates lifted knapsack cover inequalities */
266 SCIP_Real* knapvals, /**< coefficients of the variables in the continuous knapsack constraint */
267 SCIP_Real valscale, /**< -1.0 if lhs of row is used as rhs of c. k. constraint, +1.0 otherwise */
SCIP_EXPORT SCIP_RETCODE SCIPseparateKnapsackCuts(SCIP *scip, SCIP_CONS *cons, SCIP_SEPA *sepa, SCIP_VAR **vars, int nvars, SCIP_Longint *weights, SCIP_Longint capacity, SCIP_SOL *sol, SCIP_Bool usegubs, SCIP_Bool *cutoff, int *ncuts)
Definition: cons_knapsack.c:5531
Definition: struct_scip.h:58
Definition: struct_var.h:198
SCIP_EXPORT int SCIPgetNVarsKnapsack(SCIP *scip, SCIP_CONS *cons)
Definition: cons_knapsack.c:13617
SCIP_EXPORT SCIP_RETCODE SCIPseparateRelaxedKnapsack(SCIP *scip, SCIP_CONS *cons, SCIP_SEPA *sepa, int nknapvars, SCIP_VAR **knapvars, SCIP_Real *knapvals, SCIP_Real valscale, SCIP_Real rhs, SCIP_SOL *sol, SCIP_Bool *cutoff, int *ncuts)
Definition: cons_knapsack.c:5748
SCIP_EXPORT SCIP_RETCODE SCIPcreateConsKnapsack(SCIP *scip, SCIP_CONS **cons, const char *name, int nvars, SCIP_VAR **vars, SCIP_Longint *weights, SCIP_Longint capacity, SCIP_Bool initial, SCIP_Bool separate, SCIP_Bool enforce, SCIP_Bool check, SCIP_Bool propagate, SCIP_Bool local, SCIP_Bool modifiable, SCIP_Bool dynamic, SCIP_Bool removable, SCIP_Bool stickingatnode)
Definition: cons_knapsack.c:13449
SCIP_EXPORT SCIP_ROW * SCIPgetRowKnapsack(SCIP *scip, SCIP_CONS *cons)
Definition: cons_knapsack.c:13730
SCIP_EXPORT SCIP_RETCODE SCIPchgCapacityKnapsack(SCIP *scip, SCIP_CONS *cons, SCIP_Longint capacity)
Definition: cons_knapsack.c:13588
type definitions for return codes for SCIP methods
SCIP_EXPORT SCIP_Longint * SCIPgetWeightsKnapsack(SCIP *scip, SCIP_CONS *cons)
Definition: cons_knapsack.c:13659
Definition: struct_sepa.h:37
SCIP_EXPORT SCIP_RETCODE SCIPsolveKnapsackExactly(SCIP *scip, int nitems, SCIP_Longint *weights, SCIP_Real *profits, SCIP_Longint capacity, int *items, int *solitems, int *nonsolitems, int *nsolitems, int *nnonsolitems, SCIP_Real *solval, SCIP_Bool *success)
Definition: cons_knapsack.c:1042
type definitions for LP management
Definition: struct_sol.h:63
Definition: struct_cons.h:37
SCIP_EXPORT SCIP_RETCODE SCIPcreateConsBasicKnapsack(SCIP *scip, SCIP_CONS **cons, const char *name, int nvars, SCIP_VAR **vars, SCIP_Longint *weights, SCIP_Longint capacity)
Definition: cons_knapsack.c:13524
type definitions for SCIP's main datastructure
type definitions for problem variables
Definition: struct_lp.h:192
SCIP_EXPORT SCIP_VAR ** SCIPgetVarsKnapsack(SCIP *scip, SCIP_CONS *cons)
Definition: cons_knapsack.c:13638
SCIP_EXPORT SCIP_Real SCIPgetDualsolKnapsack(SCIP *scip, SCIP_CONS *cons)
Definition: cons_knapsack.c:13680
type definitions for storing primal CIP solutions
SCIP_EXPORT SCIP_Real SCIPgetDualfarkasKnapsack(SCIP *scip, SCIP_CONS *cons)
Definition: cons_knapsack.c:13704
type definitions for separators
SCIP_EXPORT SCIP_RETCODE SCIPsolveKnapsackApproximately(SCIP *scip, int nitems, SCIP_Longint *weights, SCIP_Real *profits, SCIP_Longint capacity, int *items, int *solitems, int *nonsolitems, int *nsolitems, int *nnonsolitems, SCIP_Real *solval)
Definition: cons_knapsack.c:1541
SCIP_EXPORT SCIP_RETCODE SCIPaddCoefKnapsack(SCIP *scip, SCIP_CONS *cons, SCIP_VAR *var, SCIP_Longint weight)
Definition: cons_knapsack.c:13543
common defines and data types used in all packages of SCIP
SCIP_EXPORT SCIP_RETCODE SCIPincludeConshdlrKnapsack(SCIP *scip)
Definition: cons_knapsack.c:13299
Definition: objbenders.h:33
SCIP_EXPORT SCIP_Longint SCIPgetCapacityKnapsack(SCIP *scip, SCIP_CONS *cons)
Definition: cons_knapsack.c:13564
type definitions for constraints and constraint handlers