Scippy

SCIP

Solving Constraint Integer Programs

cons_soc.c File Reference

Detailed Description

constraint handler for second order cone constraints $\sqrt{\gamma + \sum_{i=1}^{n} (\alpha_i\, (x_i + \beta_i))^2} \leq \alpha_{n+1}\, (x_{n+1}+\beta_{n+1})$

Author
Stefan Vigerske
Marc Pfetsch

Definition in file cons_soc.c.

#include <assert.h>
#include <string.h>
#include <math.h>
#include <ctype.h>
#include "scip/cons_soc.h"
#include "scip/cons_quadratic.h"
#include "scip/cons_linear.h"
#include "scip/heur_subnlp.h"
#include "scip/heur_trysol.h"
#include "scip/intervalarith.h"
#include "nlpi/nlpi.h"
#include "nlpi/exprinterpret.h"

Go to the source code of this file.

Macros

#define CONSHDLR_NAME   "soc"
 
#define CONSHDLR_DESC   "constraint handler for second order cone constraints"
 
#define CONSHDLR_SEPAPRIORITY   10
 
#define CONSHDLR_ENFOPRIORITY   -40
 
#define CONSHDLR_CHECKPRIORITY   -10
 
#define CONSHDLR_SEPAFREQ   1
 
#define CONSHDLR_PROPFREQ   1
 
#define CONSHDLR_EAGERFREQ   100
 
#define CONSHDLR_MAXPREROUNDS   -1
 
#define CONSHDLR_DELAYSEPA   FALSE
 
#define CONSHDLR_DELAYPROP   FALSE
 
#define CONSHDLR_DELAYPRESOL   FALSE
 
#define CONSHDLR_NEEDSCONS   TRUE
 
#define CONSHDLR_PROP_TIMING   SCIP_PROPTIMING_BEFORELP
 
#define QUADCONSUPGD_PRIORITY   10000
 
#define M_PI   3.141592653589793238462643
 

Typedefs

typedef struct VarEventData VAREVENTDATA
 

Functions

static SCIP_RETCODE catchLhsVarEvents (SCIP *scip, SCIP_EVENTHDLR *eventhdlr, SCIP_CONS *cons, int varidx)
 
static SCIP_RETCODE catchRhsVarEvents (SCIP *scip, SCIP_EVENTHDLR *eventhdlr, SCIP_CONS *cons)
 
static SCIP_RETCODE catchVarEvents (SCIP *scip, SCIP_EVENTHDLR *eventhdlr, SCIP_CONS *cons)
 
static SCIP_RETCODE dropLhsVarEvents (SCIP *scip, SCIP_EVENTHDLR *eventhdlr, SCIP_CONS *cons, int varidx)
 
static SCIP_RETCODE dropRhsVarEvents (SCIP *scip, SCIP_EVENTHDLR *eventhdlr, SCIP_CONS *cons)
 
static SCIP_RETCODE dropVarEvents (SCIP *scip, SCIP_EVENTHDLR *eventhdlr, SCIP_CONS *cons)
 
static SCIP_DECL_EVENTEXEC (processVarEvent)
 
static SCIP_RETCODE createNlRow (SCIP *scip, SCIP_CONSHDLR *conshdlr, SCIP_CONS *cons)
 
static SCIP_RETCODE evalLhs (SCIP *scip, SCIP_CONS *cons, SCIP_SOL *sol)
 
static SCIP_Real getGradientNorm (SCIP *scip, SCIP_CONS *cons, SCIP_SOL *sol)
 
static SCIP_RETCODE computeViolation (SCIP *scip, SCIP_CONSHDLR *conshdlr, SCIP_CONS *cons, SCIP_SOL *sol)
 
static SCIP_RETCODE computeViolations (SCIP *scip, SCIP_CONSHDLR *conshdlr, SCIP_CONS **conss, int nconss, SCIP_SOL *sol, SCIP_CONS **maxviolcons)
 
static SCIP_RETCODE generateCutSol (SCIP *scip, SCIP_CONS *cons, SCIP_SOL *sol, SCIP_ROW **row)
 
static SCIP_RETCODE generateCutPoint (SCIP *scip, SCIP_CONS *cons, SCIP_Real *x, SCIP_ROW **row)
 
static SCIP_RETCODE generateCutProjectedPoint (SCIP *scip, SCIP_CONS *cons, SCIP_SOL *sol, SCIP_ROW **row)
 
static SCIP_RETCODE generateSparseCut (SCIP *scip, SCIP_CONSHDLR *conshdlr, SCIP_CONS *cons, SCIP_SOL *sol, SCIP_ROW **row, SCIP_Real minefficacy)
 
static SCIP_RETCODE separatePoint (SCIP *scip, SCIP_CONSHDLR *conshdlr, SCIP_CONS **conss, int nconss, int nusefulconss, SCIP_SOL *sol, SCIP_Bool inenforcement, SCIP_Bool *cutoff, SCIP_Bool *success)
 
static SCIP_RETCODE addLinearizationCuts (SCIP *scip, SCIP_CONSHDLR *conshdlr, SCIP_CONS **conss, int nconss, SCIP_SOL *ref, SCIP_Bool *separatedlpsol, SCIP_Real minefficacy, SCIP_Bool *cutoff)
 
static SCIP_DECL_EVENTEXEC (processNewSolutionEvent)
 
static SCIP_RETCODE presolveRemoveFixedVariables (SCIP *scip, SCIP_CONSHDLR *conshdlr, SCIP_CONS *cons, int *ndelconss, int *nupgdconss, int *nchgbds, int *nfixedvars, SCIP_Bool *iscutoff, SCIP_Bool *isdeleted)
 
static SCIP_RETCODE presolveCreateGlineurApproxDim3 (SCIP *scip, SCIP_CONS *cons, SCIP_VAR *x1, SCIP_VAR *x2, SCIP_VAR *x3, SCIP_Real alpha1, SCIP_Real alpha2, SCIP_Real alpha3, SCIP_Real offset1, SCIP_Real offset2, SCIP_Real offset3, int N, const char *basename, int *naddconss)
 
static SCIP_RETCODE presolveCreateBenTalNemirovskiApproxDim3 (SCIP *scip, SCIP_CONS *cons, SCIP_VAR *x1, SCIP_VAR *x2, SCIP_VAR *x3, SCIP_Real alpha1, SCIP_Real alpha2, SCIP_Real alpha3, SCIP_Real offset1, SCIP_Real offset2, SCIP_Real offset3, int N, const char *basename, int *naddconss)
 
static SCIP_RETCODE presolveCreateOuterApproxDim3 (SCIP *scip, SCIP_CONS *cons, SCIP_VAR *x1, SCIP_VAR *x2, SCIP_VAR *x3, SCIP_Real alpha1, SCIP_Real alpha2, SCIP_Real alpha3, SCIP_Real offset1, SCIP_Real offset2, SCIP_Real offset3, int N, SCIP_Bool glineur, const char *basename, int *naddconss)
 
static SCIP_RETCODE presolveCreateOuterApprox (SCIP *scip, int nlhsvars, SCIP_VAR **lhsvars, SCIP_Real *lhscoefs, SCIP_Real *lhsoffsets, SCIP_VAR *rhsvar, SCIP_Real rhscoeff, SCIP_Real rhsoffset, SCIP_Real constant, const char *basename, SCIP_CONS *origcons, int soc3_nr_auxvars, SCIP_Bool glineur, int *naddconss)
 
static SCIP_RETCODE propagateBounds (SCIP *scip, SCIP_CONS *cons, SCIP_RESULT *result, int *nchgbds)
 
static SCIP_RETCODE polishSolution (SCIP *scip, SCIP_CONS *cons, SCIP_SOL *sol, SCIP_Bool *success)
 
static SCIP_DECL_QUADCONSUPGD (upgradeConsQuadratic)
 
static SCIP_DECL_CONSHDLRCOPY (conshdlrCopySOC)
 
static SCIP_DECL_CONSFREE (consFreeSOC)
 
static SCIP_DECL_CONSINIT (consInitSOC)
 
static SCIP_DECL_CONSEXIT (consExitSOC)
 
static SCIP_DECL_CONSEXITPRE (consExitpreSOC)
 
static SCIP_DECL_CONSINITSOL (consInitsolSOC)
 
static SCIP_DECL_CONSEXITSOL (consExitsolSOC)
 
static SCIP_DECL_CONSDELETE (consDeleteSOC)
 
static SCIP_DECL_CONSTRANS (consTransSOC)
 
static SCIP_DECL_CONSSEPALP (consSepalpSOC)
 
static SCIP_DECL_CONSSEPASOL (consSepasolSOC)
 
static SCIP_DECL_CONSENFOLP (consEnfolpSOC)
 
static SCIP_DECL_CONSENFOPS (consEnfopsSOC)
 
static SCIP_DECL_CONSCHECK (consCheckSOC)
 
static SCIP_DECL_CONSPROP (consPropSOC)
 
static SCIP_DECL_CONSPRESOL (consPresolSOC)
 
static SCIP_DECL_CONSLOCK (consLockSOC)
 
static SCIP_DECL_CONSPRINT (consPrintSOC)
 
static SCIP_DECL_CONSCOPY (consCopySOC)
 
static SCIP_DECL_CONSPARSE (consParseSOC)
 
static SCIP_DECL_CONSGETVARS (consGetVarsSOC)
 
static SCIP_DECL_CONSGETNVARS (consGetNVarsSOC)
 
SCIP_RETCODE SCIPincludeConshdlrSOC (SCIP *scip)
 
SCIP_RETCODE SCIPcreateConsSOC (SCIP *scip, SCIP_CONS **cons, const char *name, int nvars, SCIP_VAR **vars, SCIP_Real *coefs, SCIP_Real *offsets, SCIP_Real constant, SCIP_VAR *rhsvar, SCIP_Real rhscoeff, SCIP_Real rhsoffset, 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_RETCODE SCIPcreateConsBasicSOC (SCIP *scip, SCIP_CONS **cons, const char *name, int nvars, SCIP_VAR **vars, SCIP_Real *coefs, SCIP_Real *offsets, SCIP_Real constant, SCIP_VAR *rhsvar, SCIP_Real rhscoeff, SCIP_Real rhsoffset)
 
SCIP_RETCODE SCIPgetNlRowSOC (SCIP *scip, SCIP_CONS *cons, SCIP_NLROW **nlrow)
 
int SCIPgetNLhsVarsSOC (SCIP *scip, SCIP_CONS *cons)
 
SCIP_VAR ** SCIPgetLhsVarsSOC (SCIP *scip, SCIP_CONS *cons)
 
SCIP_RealSCIPgetLhsCoefsSOC (SCIP *scip, SCIP_CONS *cons)
 
SCIP_RealSCIPgetLhsOffsetsSOC (SCIP *scip, SCIP_CONS *cons)
 
SCIP_Real SCIPgetLhsConstantSOC (SCIP *scip, SCIP_CONS *cons)
 
SCIP_VARSCIPgetRhsVarSOC (SCIP *scip, SCIP_CONS *cons)
 
SCIP_Real SCIPgetRhsCoefSOC (SCIP *scip, SCIP_CONS *cons)
 
SCIP_Real SCIPgetRhsOffsetSOC (SCIP *scip, SCIP_CONS *cons)
 
SCIP_RETCODE SCIPaddToNlpiProblemSOC (SCIP *scip, SCIP_CONS *cons, SCIP_NLPI *nlpi, SCIP_NLPIPROBLEM *nlpiprob, SCIP_HASHMAP *scipvar2nlpivar, SCIP_Bool names)
 

Macro Definition Documentation

#define CONSHDLR_DESC   "constraint handler for second order cone constraints"

Definition at line 44 of file cons_soc.c.

Referenced by SCIPincludeConshdlrSOC().

#define CONSHDLR_SEPAPRIORITY   10

priority of the constraint handler for separation

Definition at line 45 of file cons_soc.c.

Referenced by SCIPincludeConshdlrSOC().

#define CONSHDLR_ENFOPRIORITY   -40

priority of the constraint handler for constraint enforcing

Definition at line 46 of file cons_soc.c.

Referenced by SCIPincludeConshdlrSOC().

#define CONSHDLR_CHECKPRIORITY   -10

priority of the constraint handler for checking feasibility

Definition at line 47 of file cons_soc.c.

Referenced by SCIPincludeConshdlrSOC().

#define CONSHDLR_SEPAFREQ   1

frequency for separating cuts; zero means to separate only in the root node

Definition at line 48 of file cons_soc.c.

Referenced by SCIPincludeConshdlrSOC().

#define CONSHDLR_PROPFREQ   1

frequency for propagating domains; zero means only preprocessing propagation

Definition at line 49 of file cons_soc.c.

Referenced by SCIPincludeConshdlrSOC().

#define CONSHDLR_EAGERFREQ   100

frequency for using all instead of only the useful constraints in separation, propagation and enforcement, -1 for no eager evaluations, 0 for first only

Definition at line 50 of file cons_soc.c.

Referenced by SCIPincludeConshdlrSOC().

#define CONSHDLR_MAXPREROUNDS   -1

maximal number of presolving rounds the constraint handler participates in (-1: no limit)

Definition at line 52 of file cons_soc.c.

Referenced by SCIPincludeConshdlrSOC().

#define CONSHDLR_DELAYSEPA   FALSE

should separation method be delayed, if other separators found cuts?

Definition at line 53 of file cons_soc.c.

Referenced by SCIPincludeConshdlrSOC().

#define CONSHDLR_DELAYPROP   FALSE

should propagation method be delayed, if other propagators found reductions?

Definition at line 54 of file cons_soc.c.

Referenced by SCIPincludeConshdlrSOC().

#define CONSHDLR_DELAYPRESOL   FALSE

should presolving method be delayed, if other presolvers found reductions?

Definition at line 55 of file cons_soc.c.

Referenced by SCIPincludeConshdlrSOC().

#define CONSHDLR_NEEDSCONS   TRUE

should the constraint handler be skipped, if no constraints are available?

Definition at line 56 of file cons_soc.c.

Referenced by SCIPincludeConshdlrSOC().

#define CONSHDLR_PROP_TIMING   SCIP_PROPTIMING_BEFORELP

Definition at line 58 of file cons_soc.c.

Referenced by SCIPincludeConshdlrSOC().

#define QUADCONSUPGD_PRIORITY   10000

priority of the constraint handler for upgrading of quadratic constraints

Definition at line 60 of file cons_soc.c.

Referenced by SCIPincludeConshdlrSOC().

#define M_PI   3.141592653589793238462643

Typedef Documentation

typedef struct VarEventData VAREVENTDATA

Definition at line 77 of file cons_soc.c.

Function Documentation

static SCIP_RETCODE catchLhsVarEvents ( SCIP scip,
SCIP_EVENTHDLR eventhdlr,
SCIP_CONS cons,
int  varidx 
)
static

catch left hand side variable events

Parameters
scipSCIP data structure
eventhdlrevent handler
consconstraint for which to catch bound change events
varidxindex of the variable which events to catch

Definition at line 137 of file cons_soc.c.

References FALSE, NULL, SCIP_CALL, SCIP_EVENTTYPE_BOUNDTIGHTENED, SCIP_OKAY, SCIPcatchVarEvent(), and SCIPconsGetData().

Referenced by catchVarEvents(), and presolveRemoveFixedVariables().

static SCIP_RETCODE catchRhsVarEvents ( SCIP scip,
SCIP_EVENTHDLR eventhdlr,
SCIP_CONS cons 
)
static

catch right hand side variable events

Parameters
scipSCIP data structure
eventhdlrevent handler
consconstraint for which to catch bound change events

Definition at line 167 of file cons_soc.c.

References FALSE, NULL, SCIP_CALL, SCIP_EVENTTYPE_UBTIGHTENED, SCIP_OKAY, SCIPcatchVarEvent(), and SCIPconsGetData().

Referenced by catchVarEvents(), and presolveRemoveFixedVariables().

static SCIP_RETCODE catchVarEvents ( SCIP scip,
SCIP_EVENTHDLR eventhdlr,
SCIP_CONS cons 
)
static

catch variables events

Parameters
scipSCIP data structure
eventhdlrevent handler
consconstraint for which to catch bound change events

Definition at line 193 of file cons_soc.c.

References catchLhsVarEvents(), catchRhsVarEvents(), NULL, SCIP_CALL, SCIP_OKAY, SCIPallocBlockMemoryArray, and SCIPconsGetData().

Referenced by presolveRemoveFixedVariables(), SCIP_DECL_CONSTRANS(), and SCIPcreateConsSOC().

static SCIP_RETCODE dropLhsVarEvents ( SCIP scip,
SCIP_EVENTHDLR eventhdlr,
SCIP_CONS cons,
int  varidx 
)
static

drop left hand side variable events

Parameters
scipSCIP data structure
eventhdlrevent handler
consconstraint for which to catch bound change events
varidxindex of the variable which events to catch

Definition at line 230 of file cons_soc.c.

References NULL, SCIP_CALL, SCIP_EVENTTYPE_BOUNDTIGHTENED, SCIP_OKAY, SCIPconsGetData(), and SCIPdropVarEvent().

Referenced by dropVarEvents(), and presolveRemoveFixedVariables().

static SCIP_RETCODE dropRhsVarEvents ( SCIP scip,
SCIP_EVENTHDLR eventhdlr,
SCIP_CONS cons 
)
static

drop right hand side variable events

Parameters
scipSCIP data structure
eventhdlrevent handler
consconstraint for which to catch bound change events

Definition at line 257 of file cons_soc.c.

References NULL, SCIP_CALL, SCIP_EVENTTYPE_UBTIGHTENED, SCIP_OKAY, SCIPconsGetData(), and SCIPdropVarEvent().

Referenced by dropVarEvents(), and presolveRemoveFixedVariables().

static SCIP_RETCODE dropVarEvents ( SCIP scip,
SCIP_EVENTHDLR eventhdlr,
SCIP_CONS cons 
)
static

drop variable events

Parameters
scipSCIP data structure
eventhdlrevent handler
consconstraint for which to catch bound change events

Definition at line 280 of file cons_soc.c.

References dropLhsVarEvents(), dropRhsVarEvents(), NULL, SCIP_CALL, SCIP_OKAY, SCIPconsGetData(), and SCIPfreeBlockMemoryArray.

Referenced by presolveRemoveFixedVariables(), and SCIP_DECL_CONSDELETE().

static SCIP_DECL_EVENTEXEC ( processVarEvent  )
static

process variable bound tightening event

Definition at line 316 of file cons_soc.c.

References FALSE, NULL, and SCIP_OKAY.

static SCIP_RETCODE evalLhs ( SCIP scip,
SCIP_CONS cons,
SCIP_SOL sol 
)
static

evaluates the left hand side of a SOC constraint

Parameters
scipSCIP data structure
consconstraint to evaluate
solsolution to evaluate, or NULL if LP solution should be used

Definition at line 669 of file cons_soc.c.

References MAX, MIN, NULL, SCIP_OKAY, SCIP_Real, SCIPconsGetData(), SCIPgetSolVal(), SCIPinfinity(), SCIPisFeasGE(), SCIPisFeasLE(), SCIPisInfinity(), SCIPvarGetLbLocal(), SCIPvarGetUbLocal(), and sqrt().

Referenced by addLinearizationCuts(), and computeViolation().

static SCIP_Real getGradientNorm ( SCIP scip,
SCIP_CONS cons,
SCIP_SOL sol 
)
static
Parameters
scipSCIP data structure
consconstraint
solsolution or NULL if LP solution should be used

Definition at line 722 of file cons_soc.c.

References NULL, SCIP_Real, SCIPconsGetData(), SCIPgetSolVal(), SCIPisInfinity(), and sqrt().

Referenced by computeViolation().

static SCIP_RETCODE computeViolation ( SCIP scip,
SCIP_CONSHDLR conshdlr,
SCIP_CONS cons,
SCIP_SOL sol 
)
static

computes violation of a SOC constraint

Parameters
scipSCIP data structure
conshdlrconstraint handler
consconstraint to evaluate
solsolution to evaluate, or NULL if LP solution should be used

Definition at line 755 of file cons_soc.c.

References evalLhs(), getGradientNorm(), MAX, MIN, NULL, SCIP_CALL, SCIP_INVALIDDATA, SCIP_OKAY, SCIP_Real, SCIPABORT, SCIPconsGetData(), SCIPconshdlrGetData(), SCIPerrorMessage, SCIPgetSolVal(), SCIPinfinity(), SCIPisFeasGE(), SCIPisFeasLE(), SCIPisInfinity(), SCIPvarGetLbLocal(), and SCIPvarGetUbLocal().

Referenced by computeViolations(), and SCIP_DECL_CONSCHECK().

static SCIP_RETCODE computeViolations ( SCIP scip,
SCIP_CONSHDLR conshdlr,
SCIP_CONS **  conss,
int  nconss,
SCIP_SOL sol,
SCIP_CONS **  maxviolcons 
)
static

computes violations for a set of constraints

Parameters
scipSCIP data structure
conshdlrconstraint handler
conssconstraints to evaluate
nconssnumber of constraints to evaluate
solsolution to evaluate, or NULL if LP solution should be used
maxviolconsa buffer to store pointer to maximal violated constraint, or NULL if of no interest

Definition at line 868 of file cons_soc.c.

References computeViolation(), NULL, SCIP_CALL, SCIP_OKAY, SCIP_Real, SCIPconsGetData(), SCIPfeastol(), and SCIPisGT().

Referenced by SCIP_DECL_CONSENFOLP(), SCIP_DECL_CONSENFOPS(), SCIP_DECL_CONSSEPALP(), and SCIP_DECL_CONSSEPASOL().

static SCIP_RETCODE generateCutSol ( SCIP scip,
SCIP_CONS cons,
SCIP_SOL sol,
SCIP_ROW **  row 
)
static

generate supporting hyperplane in a given solution

Parameters
scipSCIP pointer
consconstraint
solsolution to separate, or NULL for LP solution
rowplace to store cut

Definition at line 907 of file cons_soc.c.

References FALSE, NULL, SCIP_CALL, SCIP_MAXSTRLEN, SCIP_OKAY, SCIP_Real, SCIPaddVarsToRow(), SCIPaddVarToRow(), SCIPallocBufferArray, SCIPconsGetData(), SCIPconsGetHdlr(), SCIPconsGetName(), SCIPconsIsLocal(), SCIPcreateEmptyRowCons(), SCIPfreeBufferArray, SCIPgetNLPs(), SCIPgetSolVal(), SCIPinfinity(), SCIPisInfinity(), SCIPisPositive(), SCIPsnprintf(), and TRUE.

Referenced by addLinearizationCuts(), generateCutProjectedPoint(), generateSparseCut(), and separatePoint().

static SCIP_RETCODE generateCutPoint ( SCIP scip,
SCIP_CONS cons,
SCIP_Real x,
SCIP_ROW **  row 
)
static

generate supporting hyperplane in a given point

Parameters
scipSCIP pointer
consconstraint
xpoint (lhs-vars) where to generate cut
rowplace to store cut

Definition at line 959 of file cons_soc.c.

References FALSE, NULL, SCIP_CALL, SCIP_MAXSTRLEN, SCIP_OKAY, SCIP_Real, SCIPaddVarsToRow(), SCIPaddVarToRow(), SCIPallocBufferArray, SCIPconsGetData(), SCIPconsGetHdlr(), SCIPconsGetName(), SCIPconsIsLocal(), SCIPcreateEmptyRowCons(), SCIPfreeBufferArray, SCIPgetNLPs(), SCIPinfinity(), SCIPisInfinity(), SCIPisZero(), SCIPsnprintf(), sqrt(), and TRUE.

Referenced by generateSparseCut().

static SCIP_RETCODE generateCutProjectedPoint ( SCIP scip,
SCIP_CONS cons,
SCIP_SOL sol,
SCIP_ROW **  row 
)
static

generate supporting hyperplane w.r.t. solution projected on feasible set

Instead of linearizing the SOC constraint in the given solution point, this function projects the point first onto the feasible set of the SOC constraint (w.r.t. euclidean norm (scaled by alpha)) and linearizes the SOC constraint there. The hope is that this produces somewhat tighter cuts.

The projection has only be computed for the case gamma = 0. If gamma > 0, generateCut is called.

Let $\hat x$ be sol or the LP solution if sol == NULL. Then the projected point $\tilde x$ is given by

\[ \tilde x_i = \frac{\hat x_i + \lambda \beta_i}{1-\lambda}, \quad i=1,\ldots, n; \quad \tilde x_{n+1} = \frac{\hat x_{n+1} - \lambda \beta_{n+1}}{1+\lambda} \]

where

\[ \lambda = \frac{1-A}{1+A}, \qquad A = \frac{\alpha_{n+1}(\hat x_{n+1}+\beta_{n+1})}{\sqrt{\sum_{i=1}^n (\alpha_i(\hat x_i+\beta_i))^2}} \]

If lambda is very close to 1, generateCut is called.

The generated cut is very similar to the unprojected form. The only difference is in the right hand side, which is (in the case beta = 0) multiplied by 1/(1-lambda).

Parameters
scipSCIP pointer
consconstraint
solsolution to separate, or NULL for LP solution
rowplace to store cut

Definition at line 1055 of file cons_soc.c.

References FALSE, generateCutSol(), NULL, SCIP_CALL, SCIP_MAXSTRLEN, SCIP_OKAY, SCIP_Real, SCIPaddVarsToRow(), SCIPaddVarToRow(), SCIPallocBufferArray, SCIPconsGetData(), SCIPconsGetHdlr(), SCIPconsGetName(), SCIPconsIsLocal(), SCIPcreateEmptyRowCons(), SCIPdebugMessage, SCIPfreeBufferArray, SCIPgetNLPs(), SCIPgetSolVal(), SCIPinfinity(), SCIPisFeasEQ(), SCIPisInfinity(), SCIPisNegative(), SCIPisPositive(), SCIPisZero(), SCIPsnprintf(), and TRUE.

Referenced by separatePoint().

static SCIP_RETCODE generateSparseCut ( SCIP scip,
SCIP_CONSHDLR conshdlr,
SCIP_CONS cons,
SCIP_SOL sol,
SCIP_ROW **  row,
SCIP_Real  minefficacy 
)
static

generates sparsified supporting hyperplane

Parameters
scipSCIP pointer
conshdlrconstraint handler
consconstraint
solsolution to separate, or NULL for LP solution
rowplace to store cut
minefficacyminimal efficacy for a cut to be accepted

Definition at line 1131 of file cons_soc.c.

References generateCutPoint(), generateCutSol(), MAX, MIN, NULL, REALABS, SCIP_CALL, SCIP_INVALIDDATA, SCIP_OKAY, SCIP_Real, SCIPABORT, SCIPallocBufferArray, SCIPconsGetData(), SCIPconshdlrGetData(), SCIPdebugMessage, SCIPerrorMessage, SCIPgetRowMaxCoef(), SCIPgetRowSolFeasibility(), SCIPgetSolVal(), SCIPgetSolVals(), SCIPisGT(), SCIPisInfinity(), SCIPisPositive(), SCIPreleaseRow(), SCIProwGetLhs(), SCIProwGetRhs(), and SCIPsortRealInt().

Referenced by separatePoint().

static SCIP_RETCODE separatePoint ( SCIP scip,
SCIP_CONSHDLR conshdlr,
SCIP_CONS **  conss,
int  nconss,
int  nusefulconss,
SCIP_SOL sol,
SCIP_Bool  inenforcement,
SCIP_Bool cutoff,
SCIP_Bool success 
)
static

separates a point, if possible

Parameters
scipSCIP data structure
conshdlrconstraint handler
conssconstraints
nconssnumber of constraints
nusefulconssnumber of constraints that seem to be useful
solsolution to separate, or NULL for LP solution
inenforcementwhether we are in constraint enforcement
cutoffpointer to store whether a fixing leads to a cutoff
successbuffer to store whether the point was separated

Definition at line 1270 of file cons_soc.c.

References FALSE, generateCutProjectedPoint(), generateCutSol(), generateSparseCut(), MAX, MIN, NULL, REALABS, SCIP_CALL, SCIP_INVALIDDATA, SCIP_OKAY, SCIP_Real, SCIPABORT, SCIPaddCut(), SCIPconsGetData(), SCIPconshdlrGetData(), SCIPdebugMessage, SCIPepsilon(), SCIPerrorMessage, SCIPfeastol(), SCIPgetCutEfficacy(), SCIPgetRelaxFeastolFactor(), SCIPgetRowMaxCoef(), SCIPgetRowSolFeasibility(), SCIPisCutApplicable(), SCIPisGT(), SCIPisInfinity(), SCIPisLE(), SCIPmarkRowNotRemovableLocal(), SCIPreleaseRow(), SCIPresetConsAge(), SCIProwGetLhs(), SCIProwGetRhs(), and TRUE.

Referenced by SCIP_DECL_CONSENFOLP(), SCIP_DECL_CONSSEPALP(), and SCIP_DECL_CONSSEPASOL().

static SCIP_RETCODE addLinearizationCuts ( SCIP scip,
SCIP_CONSHDLR conshdlr,
SCIP_CONS **  conss,
int  nconss,
SCIP_SOL ref,
SCIP_Bool separatedlpsol,
SCIP_Real  minefficacy,
SCIP_Bool cutoff 
)
static

adds linearizations cuts for convex constraints w.r.t. a given reference point to cutpool and sepastore if separatedlpsol is not NULL, then a cut that separates the LP solution is added to the sepastore and is forced to enter the LP if separatedlpsol is not NULL, but cut does not separate the LP solution, then it is added to the cutpool only if separatedlpsol is NULL, then cut is added to cutpool only

Parameters
scipSCIP data structure
conshdlrquadratic constraints handler
conssconstraints
nconssnumber of constraints
refreference point where to linearize, or NULL for LP solution
separatedlpsolbuffer to store whether a cut that separates the current LP solution was found and added to LP, or NULL if adding to cutpool only
minefficacyminimal efficacy of a cut when checking for separation of LP solution
cutoffpointer to store whether a cutoff was detected

Definition at line 1410 of file cons_soc.c.

References evalLhs(), FALSE, generateCutSol(), MAX, MIN, NULL, REALABS, SCIP_Bool, SCIP_CALL, SCIP_INVALIDDATA, SCIP_OKAY, SCIP_Real, SCIPABORT, SCIPaddCut(), SCIPaddPoolCut(), SCIPconsGetData(), SCIPconsGetName(), SCIPconshdlrGetData(), SCIPconsIsLocal(), SCIPdebugMessage, SCIPerrorMessage, SCIPgetRowLPFeasibility(), SCIPgetRowMaxCoef(), SCIPisInfinity(), SCIPisPositive(), SCIPreleaseRow(), SCIProwGetLhs(), SCIProwGetRhs(), SCIProwIsLocal(), and TRUE.

Referenced by SCIP_DECL_CONSSEPALP(), and SCIP_DECL_EVENTEXEC().

static SCIP_DECL_EVENTEXEC ( processNewSolutionEvent  )
static
static SCIP_RETCODE presolveRemoveFixedVariables ( SCIP scip,
SCIP_CONSHDLR conshdlr,
SCIP_CONS cons,
int *  ndelconss,
int *  nupgdconss,
int *  nchgbds,
int *  nfixedvars,
SCIP_Bool iscutoff,
SCIP_Bool isdeleted 
)
static

removes fixed variables, replace aggregated and negated variables

repeats replacements until no further change is found; takes care of capture/release and locks, but not of variable events (assumes that var events are not caught yet)

Parameters
scipSCIP data structure
conshdlrconstraint handler for signpower constraints
consconstraint
ndelconsscounter for number of deleted constraints
nupgdconsscounter for number of upgraded constraints
nchgbdscounter for number of bound changes
nfixedvarscounter for number of fixed variables
iscutoffto store whether constraint cannot be satisfied
isdeletedto store whether constraint is redundant and can be deleted

Definition at line 1576 of file cons_soc.c.

References BMSclearMemoryArray, catchLhsVarEvents(), catchRhsVarEvents(), catchVarEvents(), dropLhsVarEvents(), dropRhsVarEvents(), dropVarEvents(), FALSE, SCIP_QuadVarTerm::lincoef, NULL, REALABS, SCIP_Bool, SCIP_CALL, SCIP_OKAY, SCIP_Real, SCIP_VARSTATUS_MULTAGGR, SCIP_VARSTATUS_ORIGINAL, SCIPaddCons(), SCIPallocBufferArray, SCIPcaptureVar(), SCIPconsGetData(), SCIPconsGetName(), SCIPconshdlrGetData(), SCIPconsIsChecked(), SCIPconsIsDynamic(), SCIPconsIsEnforced(), SCIPconsIsInitial(), SCIPconsIsLocal(), SCIPconsIsModifiable(), SCIPconsIsPropagated(), SCIPconsIsRemovable(), SCIPconsIsSeparated(), SCIPconsIsStickingAtNode(), SCIPcreateConsLinear(), SCIPcreateConsQuadratic2(), SCIPdebugMessage, SCIPdebugPrintCons, SCIPdelCons(), SCIPfixVar(), SCIPfreeBufferArray, SCIPgetProbvarSum(), SCIPinfinity(), SCIPisFeasLE(), SCIPisNegative(), SCIPisZero(), SCIPlockVarCons(), SCIPreallocBlockMemoryArray, SCIPreleaseCons(), SCIPreleaseNlRow(), SCIPreleaseVar(), SCIPtightenVarLb(), SCIPtightenVarUb(), SCIPunlockVarCons(), SCIPvarGetName(), SCIPvarGetStatus(), SCIPvarIsActive(), SCIP_QuadVarTerm::sqrcoef, sqrt(), TRUE, and SCIP_QuadVarTerm::var.

Referenced by SCIP_DECL_CONSPRESOL().

static SCIP_RETCODE presolveCreateGlineurApproxDim3 ( SCIP scip,
SCIP_CONS cons,
SCIP_VAR x1,
SCIP_VAR x2,
SCIP_VAR x3,
SCIP_Real  alpha1,
SCIP_Real  alpha2,
SCIP_Real  alpha3,
SCIP_Real  offset1,
SCIP_Real  offset2,
SCIP_Real  offset3,
int  N,
const char *  basename,
int *  naddconss 
)
static

adds the linear outer-approximation of Glineur et.al. for a SOC constraint of dimension 3

Input is the data for a constraint $\sqrt{(\alpha_1(x_1+offset1))^2 + (\alpha_2(x_2+offset2))^2) \leq \alpha_3(x_3+offset3)}$. Here constant >= 0.0, alpha3 > 0.0, and the lower bound of x3 >= -offset3. Also x2 = NULL is allowed, in which case the second term is assumed to be constant, and offset2 != 0 is needed.

Parameters
scipSCIP data structure
consoriginal constraint
x1variable x1
x2variable x2
x3variable x3
alpha1coefficient of x1
alpha2coefficient of x2
alpha3coefficient of x3
offset1offset of x1
offset2offset of x2
offset3offset of x3
Nsize of linear approximation, need to be >= 1
basenamestring to use for building variable and constraint names
naddconssbuffer where to add the number of added constraints

Definition at line 2013 of file cons_soc.c.

References cos(), FALSE, M_PI, NULL, SCIP_Bool, SCIP_CALL, SCIP_OKAY, SCIP_Real, SCIP_VARTYPE_CONTINUOUS, SCIPaddCons(), SCIPaddVar(), SCIPallocBufferArray, SCIPconsIsChecked(), SCIPconsIsDynamic(), SCIPconsIsEnforced(), SCIPconsIsInitial(), SCIPconsIsLocal(), SCIPconsIsModifiable(), SCIPconsIsPropagated(), SCIPconsIsRemovable(), SCIPconsIsSeparated(), SCIPconsIsStickingAtNode(), SCIPcreateConsLinear(), SCIPcreateVar(), SCIPdebugMessage, SCIPdebugPrintCons, SCIPfreeBufferArray, SCIPinfinity(), SCIPisGE(), SCIPisPositive(), SCIPisZero(), SCIPreleaseCons(), SCIPreleaseVar(), SCIPsnprintf(), SCIPtightenVarLb(), SCIPvarGetLbGlobal(), SCIPvarGetLbLocal(), SCIPvarGetName(), SCIPwarningMessage(), sin(), and TRUE.

Referenced by presolveCreateOuterApproxDim3().

static SCIP_RETCODE presolveCreateBenTalNemirovskiApproxDim3 ( SCIP scip,
SCIP_CONS cons,
SCIP_VAR x1,
SCIP_VAR x2,
SCIP_VAR x3,
SCIP_Real  alpha1,
SCIP_Real  alpha2,
SCIP_Real  alpha3,
SCIP_Real  offset1,
SCIP_Real  offset2,
SCIP_Real  offset3,
int  N,
const char *  basename,
int *  naddconss 
)
static

adds the linear outer-approximation of Ben-Tal and Nemirovski for a SOC constraint of dimension 3

Input is the data for a constraint $\sqrt{constant + (\alpha_1(x_1+offset1))^2 + (\alpha_2(x_2+offset2))^2) \leq \alpha_3(x_3+offset3)}$. Here constant >= 0.0, alpha3 > 0.0, and the lower bound of x3 >= -offset3. Also x2 = NULL is allowed, in which case the second term is assumed to be constant, and offset2 != 0 is needed.

Parameters
scipSCIP data structure
consoriginal constraint
x1variable x1
x2variable x2
x3variable x3
alpha1coefficient of x1
alpha2coefficient of x2
alpha3coefficient of x3
offset1offset of x1
offset2offset of x2
offset3offset of x3
Nsize of linear approximation, need to be >= 1
basenamestring to use for building variable and constraint names
naddconssbuffer where to add the number of added constraints

Definition at line 2247 of file cons_soc.c.

References cos(), M_PI, NULL, pow(), SCIP_CALL, SCIP_OKAY, SCIP_Real, SCIP_VARTYPE_CONTINUOUS, SCIPaddCons(), SCIPaddVar(), SCIPallocBufferArray, SCIPchgVarLbGlobal(), SCIPchgVarLbNode(), SCIPconsIsChecked(), SCIPconsIsDynamic(), SCIPconsIsEnforced(), SCIPconsIsInitial(), SCIPconsIsLocal(), SCIPconsIsModifiable(), SCIPconsIsPropagated(), SCIPconsIsRemovable(), SCIPconsIsSeparated(), SCIPconsIsStickingAtNode(), SCIPcreateConsLinear(), SCIPcreateVar(), SCIPdebugMessage, SCIPfreeBufferArray, SCIPinfinity(), SCIPisGE(), SCIPisPositive(), SCIPisZero(), SCIPreleaseCons(), SCIPreleaseVar(), SCIPsnprintf(), SCIPvarGetLbGlobal(), SCIPvarGetLbLocal(), sin(), and TRUE.

Referenced by presolveCreateOuterApproxDim3().

static SCIP_RETCODE presolveCreateOuterApproxDim3 ( SCIP scip,
SCIP_CONS cons,
SCIP_VAR x1,
SCIP_VAR x2,
SCIP_VAR x3,
SCIP_Real  alpha1,
SCIP_Real  alpha2,
SCIP_Real  alpha3,
SCIP_Real  offset1,
SCIP_Real  offset2,
SCIP_Real  offset3,
int  N,
SCIP_Bool  glineur,
const char *  basename,
int *  naddconss 
)
static

adds a linear outer approx for a three dimensional SOC constraint

chooses between Ben-Tan/Nemirovski and Glineur and calls the corresponding function

Parameters
scipSCIP data structure
consoriginal constraint
x1variable x1
x2variable x2
x3variable x3
alpha1coefficient of x1
alpha2coefficient of x2
alpha3coefficient of x3
offset1offset of x1
offset2offset of x2
offset3offset of x3
Nsize of linear approximation, need to be >= 1
glineurwhether to prefer Glineur to Ben-Tal Nemirovski
basenamestring to use for building variable and constraint names
naddconssbuffer where to add the number of added constraints

Definition at line 2493 of file cons_soc.c.

References presolveCreateBenTalNemirovskiApproxDim3(), presolveCreateGlineurApproxDim3(), SCIP_CALL, and SCIP_OKAY.

Referenced by presolveCreateOuterApprox().

static SCIP_RETCODE presolveCreateOuterApprox ( SCIP scip,
int  nlhsvars,
SCIP_VAR **  lhsvars,
SCIP_Real lhscoefs,
SCIP_Real lhsoffsets,
SCIP_VAR rhsvar,
SCIP_Real  rhscoeff,
SCIP_Real  rhsoffset,
SCIP_Real  constant,
const char *  basename,
SCIP_CONS origcons,
int  soc3_nr_auxvars,
SCIP_Bool  glineur,
int *  naddconss 
)
static

adds linear outer approximation of Ben-Tal and Nemirovski for a constraint $\gamma + \sum_{i=1}^n (\alpha_i (x_i + \beta_i))^2 <= (\alpha_{n+1} (x_{n+1} + \beta_{n+1}))^2$ to the LP

if n>2, calls same function recursively; if n=2, calls presolveCreateBenTalNemirovskiApproxDim3

Parameters
scipSCIP data structure
nlhsvarsnumber of variables on left hand side (n)
lhsvarsvariables on left hand side (x_i)
lhscoefscoefficients of variables on left hand side (alpha_i)
lhsoffsetsoffsets of variable on left hand side (beta_i)
rhsvarvariable on right hand side (y)
rhscoeffcoefficient of variable on right hand side (alpha_{n+1})
rhsoffsetoffset of variable on right hand side (beta_{n+1})
constantconstant term (gamma)
basenameprefix for variable and constraint name
origconsoriginal constraint for which this SOC3 set is added
soc3_nr_auxvarsnumber of auxiliary variables to use for a SOC3 constraint, or 0 if automatic
glineurwhether Glineur should be preferred to Ben-Tal Nemirovski
naddconssbuffer where to add the number of added constraints

Definition at line 2529 of file cons_soc.c.

References FALSE, NULL, presolveCreateOuterApproxDim3(), SCIP_CALL, SCIP_OKAY, SCIP_VARTYPE_CONTINUOUS, SCIPaddVar(), SCIPcreateVar(), SCIPinfinity(), SCIPisNegative(), SCIPisPositive(), SCIPisZero(), SCIPreleaseVar(), SCIPsnprintf(), sqrt(), and TRUE.

Referenced by SCIP_DECL_CONSPRESOL().

static SCIP_RETCODE polishSolution ( SCIP scip,
SCIP_CONS cons,
SCIP_SOL sol,
SCIP_Bool success 
)
static

tries to adjust a solution such that it satisfies a given constraint by increasing the value for the constraints right hand side variable

Parameters
scipSCIP data structure
consconstraint
solsolution to polish
successbuffer to store whether polishing was successful

Definition at line 2848 of file cons_soc.c.

References FALSE, NULL, SCIP_CALL, SCIP_OKAY, SCIP_Real, SCIPceil(), SCIPconsGetData(), SCIPconsGetName(), SCIPdebugMessage, SCIPfloor(), SCIPgetSolVal(), SCIPinfinity(), SCIPisGT(), SCIPisInfinity(), SCIPisLT(), SCIPisZero(), SCIPsetSolVal(), SCIPvarGetLbGlobal(), SCIPvarGetName(), SCIPvarGetUbGlobal(), SCIPvarIsIntegral(), SCIPvarMayRoundDown(), SCIPvarMayRoundUp(), and TRUE.

Referenced by SCIP_DECL_CONSCHECK().

static SCIP_DECL_CONSHDLRCOPY ( conshdlrCopySOC  )
static

copy method for constraint handler plugins (called when SCIP copies plugins)

Definition at line 3178 of file cons_soc.c.

References CONSHDLR_NAME, NULL, SCIP_CALL, SCIP_OKAY, SCIPconshdlrGetName(), SCIPincludeConshdlrSOC(), and TRUE.

static SCIP_DECL_CONSFREE ( consFreeSOC  )
static

destructor of constraint handler to free constraint handler data (called when SCIP is exiting)

Definition at line 3194 of file cons_soc.c.

References CONSHDLR_NAME, NULL, SCIP_OKAY, SCIPconshdlrGetData(), SCIPconshdlrGetName(), and SCIPfreeBlockMemory.

static SCIP_DECL_CONSINIT ( consInitSOC  )
static

initialization method of constraint handler (called after problem was transformed)

Definition at line 3213 of file cons_soc.c.

References NULL, SCIP_OKAY, SCIPconshdlrGetData(), SCIPexprintGetName(), and SCIPfindHeur().

static SCIP_DECL_CONSEXIT ( consExitSOC  )
static

deinitialization method of constraint handler (called before transformed problem is freed)

Definition at line 3233 of file cons_soc.c.

References FALSE, NULL, SCIP_OKAY, and SCIPconshdlrGetData().

static SCIP_DECL_CONSEXITPRE ( consExitpreSOC  )
static

presolving deinitialization method of constraint handler (called after presolving has been finished)

Definition at line 3252 of file cons_soc.c.

References NULL, SCIP_OKAY, SCIPconsIsAdded(), and SCIPenableNLP().

static SCIP_DECL_CONSINITSOL ( consInitsolSOC  )
static

solving process initialization method of constraint handler (called when branch and bound process is about to begin)

Definition at line 3276 of file cons_soc.c.

References CONSHDLR_NAME, createNlRow(), FALSE, NULL, SCIP_CALL, SCIP_EVENTTYPE_SOLFOUND, SCIP_OKAY, SCIPaddNlRow(), SCIPcatchEvent(), SCIPconsGetData(), SCIPconshdlrGetData(), SCIPconsIsEnabled(), SCIPfindEventhdlr(), and SCIPisNLPConstructed().

static SCIP_DECL_CONSEXITSOL ( consExitsolSOC  )
static

solving process deinitialization method of constraint handler (called before branch and bound process data is freed)

Definition at line 3331 of file cons_soc.c.

References CONSHDLR_NAME, NULL, SCIP_CALL, SCIP_EVENTTYPE_SOLFOUND, SCIP_OKAY, SCIPconsGetData(), SCIPconshdlrGetData(), SCIPdropEvent(), SCIPfindEventhdlr(), and SCIPreleaseNlRow().

static SCIP_DECL_CONSDELETE ( consDeleteSOC  )
static
static SCIP_DECL_CONSSEPASOL ( consSepasolSOC  )
static

separation method of constraint handler for arbitrary primal solutions

Definition at line 3619 of file cons_soc.c.

References computeViolations(), FALSE, NULL, SCIP_Bool, SCIP_CALL, SCIP_CUTOFF, SCIP_DIDNOTFIND, SCIP_OKAY, SCIP_SEPARATED, and separatePoint().

static SCIP_DECL_CONSENFOPS ( consEnfopsSOC  )
static

constraint enforcing method of constraint handler for pseudo solutions

Definition at line 3744 of file cons_soc.c.

References computeViolations(), NULL, SCIP_CALL, SCIP_FEASIBLE, SCIP_INFEASIBLE, and SCIP_OKAY.

static SCIP_DECL_CONSPROP ( consPropSOC  )
static

domain propagation method of constraint handler

Definition at line 3879 of file cons_soc.c.

References NULL, propagateBounds(), SCIP_CALL, SCIP_CUTOFF, SCIP_DIDNOTFIND, SCIP_DIDNOTRUN, and SCIP_OKAY.

static SCIP_DECL_CONSLOCK ( consLockSOC  )
static

variable rounding lock method of constraint handler

Definition at line 3977 of file cons_soc.c.

References CONSHDLR_NAME, NULL, SCIP_CALL, SCIP_OKAY, SCIPaddVarLocks(), SCIPconsGetData(), SCIPconsGetName(), SCIPconshdlrGetName(), and SCIPdebugMessage.

static SCIP_DECL_CONSPRINT ( consPrintSOC  )
static

constraint display method of constraint handler

Definition at line 4008 of file cons_soc.c.

References CONSHDLR_NAME, NULL, SCIP_CALL, SCIP_OKAY, SCIPconsGetData(), SCIPconshdlrGetName(), SCIPinfoMessage(), SCIPwriteVarName(), and TRUE.

static SCIP_DECL_CONSCOPY ( consCopySOC  )
static

constraint copying method of constraint handler

Definition at line 4051 of file cons_soc.c.

References FALSE, NULL, SCIP_CALL, SCIP_OKAY, SCIPallocBufferArray, SCIPconsGetData(), SCIPconsGetName(), SCIPcreateConsSOC(), SCIPfreeBufferArray, SCIPgetVarCopy(), and TRUE.

static SCIP_DECL_CONSPARSE ( consParseSOC  )
static
static SCIP_DECL_CONSGETVARS ( consGetVarsSOC  )
static

constraint method of constraint handler which returns the variables (if possible)

Definition at line 4326 of file cons_soc.c.

References BMScopyMemoryArray, FALSE, NULL, SCIP_OKAY, SCIPconsGetData(), and TRUE.

static SCIP_DECL_CONSGETNVARS ( consGetNVarsSOC  )
static

constraint method of constraint handler which returns the number of variable (if possible)

Definition at line 4347 of file cons_soc.c.

References NULL, SCIP_OKAY, SCIPconsGetData(), and TRUE.

SCIP_RETCODE SCIPcreateConsSOC ( SCIP scip,
SCIP_CONS **  cons,
const char *  name,
int  nvars,
SCIP_VAR **  vars,
SCIP_Real coefs,
SCIP_Real offsets,
SCIP_Real  constant,
SCIP_VAR rhsvar,
SCIP_Real  rhscoeff,
SCIP_Real  rhsoffset,
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 
)

creates and captures a second order cone constraint

Note
the constraint gets captured, hence at one point you have to release it using the method SCIPreleaseCons()
Parameters
scipSCIP data structure
conspointer to hold the created constraint
namename of constraint
nvarsnumber of variables on left hand side of constraint (n)
varsarray with variables on left hand side (x_i)
coefsarray with coefficients of left hand side variables (alpha_i), or NULL if all 1.0
offsetsarray with offsets of variables (beta_i), or NULL if all 0.0
constantconstant on left hand side (gamma)
rhsvarvariable on right hand side of constraint (x_{n+1})
rhscoeffcoefficient of variable on right hand side (alpha_{n+1})
rhsoffsetoffset of variable on right hand side (beta_{n+1})
initialshould the LP relaxation of constraint be in the initial LP? Usually set to TRUE. Set to FALSE for 'lazy constraints'.
separateshould the constraint be separated during LP processing? Usually set to TRUE.
enforceshould the constraint be enforced during node processing? TRUE for model constraints, FALSE for additional, redundant constraints.
checkshould the constraint be checked for feasibility? TRUE for model constraints, FALSE for additional, redundant constraints.
propagateshould the constraint be propagated during node processing? Usually set to TRUE.
localis constraint only valid locally? Usually set to FALSE. Has to be set to TRUE, e.g., for branching constraints.
modifiableis constraint modifiable (subject to column generation)? Usually set to FALSE. In column generation applications, set to TRUE if pricing adds coefficients to this constraint.
dynamicis constraint subject to aging? Usually set to FALSE. Set to TRUE for own cuts which are separated as constraints.
removableshould the relaxation be removed from the LP due to aging or cleanup? Usually set to FALSE. Set to TRUE for 'lazy constraints' and 'user cuts'.

Definition at line 4477 of file cons_soc.c.

References BMSclearMemoryArray, catchVarEvents(), CONSHDLR_NAME, FALSE, NULL, SCIP_CALL, SCIP_OKAY, SCIP_PLUGINNOTFOUND, SCIPallocBlockMemory, SCIPallocBlockMemoryArray, SCIPcaptureVar(), SCIPcomputeVarLbGlobal(), SCIPcomputeVarLbLocal(), SCIPcomputeVarUbGlobal(), SCIPcomputeVarUbLocal(), SCIPconshdlrGetData(), SCIPcreateCons(), SCIPduplicateBlockMemoryArray, SCIPerrorMessage, SCIPfindConshdlr(), SCIPisGE(), SCIPisInfinity(), SCIPisLE(), and SCIPisTransformed().

Referenced by SCIP_DECL_CONSCOPY(), SCIP_DECL_CONSPARSE(), SCIP_DECL_QUADCONSUPGD(), and SCIPcreateConsBasicSOC().

SCIP_RETCODE SCIPcreateConsBasicSOC ( SCIP scip,
SCIP_CONS **  cons,
const char *  name,
int  nvars,
SCIP_VAR **  vars,
SCIP_Real coefs,
SCIP_Real offsets,
SCIP_Real  constant,
SCIP_VAR rhsvar,
SCIP_Real  rhscoeff,
SCIP_Real  rhsoffset 
)

creates and captures a second order cone constraint with all its constraint flags set to their default values

Note
the constraint gets captured, hence at one point you have to release it using the method SCIPreleaseCons()
Parameters
scipSCIP data structure
conspointer to hold the created constraint
namename of constraint
nvarsnumber of variables on left hand side of constraint (n)
varsarray with variables on left hand side (x_i)
coefsarray with coefficients of left hand side variables (alpha_i), or NULL if all 1.0
offsetsarray with offsets of variables (beta_i), or NULL if all 0.0
constantconstant on left hand side (gamma)
rhsvarvariable on right hand side of constraint (x_{n+1})
rhscoeffcoefficient of variable on right hand side (alpha_{n+1})
rhsoffsetoffset of variable on right hand side (beta_{n+1})

Definition at line 4605 of file cons_soc.c.

References FALSE, SCIP_CALL, SCIP_OKAY, SCIPcreateConsSOC(), and TRUE.

SCIP_RETCODE SCIPgetNlRowSOC ( SCIP scip,
SCIP_CONS cons,
SCIP_NLROW **  nlrow 
)

Gets the SOC constraint as a nonlinear row representation.

Parameters
scipSCIP data structure
consconstraint
nlrowpointer to store nonlinear row

Definition at line 4628 of file cons_soc.c.

References createNlRow(), NULL, SCIP_CALL, SCIP_OKAY, SCIPconsGetData(), and SCIPconsGetHdlr().

Referenced by createCoveringProblem().

int SCIPgetNLhsVarsSOC ( SCIP scip,
SCIP_CONS cons 
)

Gets the number of variables on the left hand side of a SOC constraint.

Parameters
scipSCIP data structure
consconstraint data

Definition at line 4654 of file cons_soc.c.

References NULL, and SCIPconsGetData().

Referenced by createCoveringProblem(), printSOCCons(), SCIP_DECL_READERWRITE(), SCIPwriteGms(), and SCIPwriteLp().

SCIP_VAR** SCIPgetLhsVarsSOC ( SCIP scip,
SCIP_CONS cons 
)

Gets the variables on the left hand side of a SOC constraint.

Parameters
scipSCIP data structure
consconstraint data

Definition at line 4667 of file cons_soc.c.

References NULL, and SCIPconsGetData().

Referenced by createCoveringProblem(), printSOCCons(), SCIP_DECL_READERWRITE(), SCIPwriteGms(), and SCIPwriteLp().

SCIP_Real* SCIPgetLhsCoefsSOC ( SCIP scip,
SCIP_CONS cons 
)

Gets the coefficients of the variables on the left hand side of a SOC constraint, or NULL if all are equal to 1.0.

Parameters
scipSCIP data structure
consconstraint data

Definition at line 4680 of file cons_soc.c.

References NULL, and SCIPconsGetData().

Referenced by createCoveringProblem(), printSOCCons(), SCIP_DECL_READERWRITE(), and SCIPwriteGms().

SCIP_Real* SCIPgetLhsOffsetsSOC ( SCIP scip,
SCIP_CONS cons 
)

Gets the offsets of the variables on the left hand side of a SOC constraint, or NULL if all are equal to 0.0.

Parameters
scipSCIP data structure
consconstraint data

Definition at line 4693 of file cons_soc.c.

References NULL, and SCIPconsGetData().

Referenced by printSOCCons(), SCIP_DECL_READERWRITE(), and SCIPwriteGms().

SCIP_Real SCIPgetLhsConstantSOC ( SCIP scip,
SCIP_CONS cons 
)

Gets the constant on the left hand side of a SOC constraint.

Parameters
scipSCIP data structure
consconstraint data

Definition at line 4706 of file cons_soc.c.

References NULL, and SCIPconsGetData().

Referenced by printSOCCons(), SCIP_DECL_READERWRITE(), and SCIPwriteGms().

SCIP_VAR* SCIPgetRhsVarSOC ( SCIP scip,
SCIP_CONS cons 
)

Gets the variable on the right hand side of a SOC constraint.

Parameters
scipSCIP data structure
consconstraint data

Definition at line 4719 of file cons_soc.c.

References NULL, and SCIPconsGetData().

Referenced by createCoveringProblem(), printSOCCons(), SCIP_DECL_READERWRITE(), SCIPwriteGms(), and SCIPwriteLp().

SCIP_Real SCIPgetRhsCoefSOC ( SCIP scip,
SCIP_CONS cons 
)

Gets the coefficient of the variable on the right hand side of a SOC constraint.

Parameters
scipSCIP data structure
consconstraint data

Definition at line 4732 of file cons_soc.c.

References NULL, and SCIPconsGetData().

Referenced by createCoveringProblem(), printSOCCons(), SCIP_DECL_READERWRITE(), and SCIPwriteGms().

SCIP_Real SCIPgetRhsOffsetSOC ( SCIP scip,
SCIP_CONS cons 
)

Gets the offset of the variables on the right hand side of a SOC constraint.

Parameters
scipSCIP data structure
consconstraint data

Definition at line 4745 of file cons_soc.c.

References NULL, and SCIPconsGetData().

Referenced by printSOCCons(), SCIP_DECL_READERWRITE(), and SCIPwriteGms().

SCIP_RETCODE SCIPaddToNlpiProblemSOC ( SCIP scip,
SCIP_CONS cons,
SCIP_NLPI nlpi,
SCIP_NLPIPROBLEM nlpiprob,
SCIP_HASHMAP scipvar2nlpivar,
SCIP_Bool  names 
)

Adds the constraint to an NLPI problem. Uses nonconvex formulation as quadratic function.

Parameters
scipSCIP data structure
consSOC constraint
nlpiinterface to NLP solver
nlpiprobNLPI problem where to add constraint
scipvar2nlpivarmapping from SCIP variables to variable indices in NLPI
nameswhether to pass constraint names to NLPI

Definition at line 4759 of file cons_soc.c.

References SCIP_QuadElement::coef, SCIP_QuadElement::idx1, SCIP_QuadElement::idx2, NULL, SCIP_CALL, SCIP_OKAY, SCIP_Real, SCIPallocBufferArray, SCIPconsGetData(), SCIPconsGetName(), SCIPfreeBufferArray, SCIPfreeBufferArrayNull, SCIPhashmapGetImage(), SCIPinfinity(), and SCIPnlpiAddConstraints().