Model.addConstr()

addConstr ( lhs, sense, rhs=None, name="" )

Add a constraint to a model.

Note that this method also accepts a TempConstr as its first argument (with the constraint name as its second argument). This allows you to use operator overloading to create a variety of different constraint types. See TempConstr for more information.

Arguments:

lhs: Left-hand side for new linear constraint. Can be a constant, a Var, a LinExpr, or a TempConstr.

sense: Sense for new linear constraint (GRB.LESS_EQUAL, GRB.EQUAL, or GRB.GREATER_EQUAL).

rhs: Right-hand side for new linear constraint. Can be a constant, a Var, or a LinExpr.

name: Name for new constraint. Note that name will be stored as an ASCII string. Thus, a name like 'A<span>$</span>{\rightarrow}<span>$</span>B' will produce an error, because '<span>$</span>{\rightarrow}<span>$</span>' can not be represented as an ASCII character. Note also that names that contain spaces are strongly discouraged, because they can't be written to LP format files.

Return value:

New constraint object.

Example usage:

  model.addConstr(x + 2*y, GRB.EQUAL, 3*z, "c0")
  model.addConstr(x + y <= 2.0, "c1")
  model.addConstr(x*x + y*y <= 4.0, "qc0")
  model.addConstr(x + y + z == [1, 2], "rgc0")
  model.addConstr(z == and_(x, y, w), "gc0")
  model.addConstr(z == min_(x, y), "gc1")
  model.addConstr((w == 1) >> (x + y <= 1), "ic0")

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