GRBModel::addQConstr()

Add a quadratic constraint to a model. Multiple signatures are available.

Important note: the algorithms that Gurobi uses to solve quadratically constrained problems can only handle certain types of quadratic constraints. Constraints of the following forms are always accepted:

  • <span>$</span>x^TQx + q^Tx \le b<span>$</span>, where Q is Positive Semi-Definite (PSD)
  • <span>$</span>x^Tx \le y^{2}<span>$</span>, where <span>$</span>x<span>$</span> is a vector of variables, and <span>$</span>y<span>$</span> is a non-negative variable (a Second-Order Cone)
  • <span>$</span>x^Tx \le y z<span>$</span>, where <span>$</span>x<span>$</span> is a vector of variables, and <span>$</span>y<span>$</span> and <span>$</span>z<span>$</span> are non-negative variables (a rotated Second-Order Cone)
If you add a constraint that isn't in one of these forms (and Gurobi presolve is unable to transform the constraint into one of these forms), you'll get an error when you try to solve the model. Constraints where the quadratic terms only involve binary variables will always be transformed into one of these forms.

GRBQConstr addQConstr ( const GRBQuadExpr& lhsExpr,
    char sense,
    const GRBQuadExpr& rhsExpr,
    string name="" )
    Add a quadratic constraint to a model.

    Arguments:

    lhsExpr: Left-hand side expression for new quadratic constraint.

    sense: Sense for new quadratic constraint (GRB_LESS_EQUAL or GRB_GREATER_EQUAL).

    rhsExpr: Right-hand side expression for new quadratic constraint.

    name (optional): Name for new constraint.

    Return value:

    New quadratic constraint object.

GRBQConstr addQConstr ( const GRBQuadExpr& lhsExpr,
    char sense,
    GRBVar rhsVar,
    string name="" )
    Add a quadratic constraint to a model.

    Arguments:

    lhsExpr: Left-hand side expression for new quadratic constraint.

    sense: Sense for new quadratic constraint (GRB_LESS_EQUAL or GRB_GREATER_EQUAL).

    rhsVar: Right-hand side variable for new quadratic constraint.

    name (optional): Name for new constraint.

    Return value:

    New quadratic constraint object.

GRBQConstr addQConstr ( GRBTempConstr& tc,
    string name="" )
    Add a quadratic constraint to a model.

    Arguments:

    tc: Temporary constraint object, created using an overloaded comparison operator. See GRBTempConstr for more information.

    name (optional): Name for new constraint.

    Return value:

    New quadratic constraint object.

Try Gurobi for Free

Choose the evaluation license that fits you best, and start working with our Expert Team for technical guidance and support.

Evaluation License
Get a free, full-featured license of the Gurobi Optimizer to experience the performance, support, benchmarking and tuning services we provide as part of our product offering.
Academic License
Gurobi supports the teaching and use of optimization within academic institutions. We offer free, full-featured copies of Gurobi for use in class, and for research.
Cloud Trial

Request free trial hours, so you can see how quickly and easily a model can be solved on the cloud.

Search