gurobipy.GenExpr#
- class GenExpr#
Gurobi general expression object. Objects of this class are created by a set of general constraint helper functions functions. They are temporary objects, meant to be used in conjunction with overloaded operators to build
TempConstrobjects, which are then passed toaddConstroraddConstrsto buildgeneral constraints.To be more specific, the following creates a
GenExprobject…max_(x, y)
The following creates a
TempConstrobject…z == max_(x, y)
The following adds a general constraint to a model…
model.addConstr(z == max_(x, y))
Please refer to the
TempConstrdocumentation for more information on building general constraints.