or_()

or_ ( *args )

Used to set a binary decision variable equal to the logical OR of a list of other binary decision variables.

Note that the Gurobi Python interface includes an equivalent any_() function.

Arguments:

*args (Var, or list of Var, or tupledict of Var values): The variables over which the OR concatenation will be taken.

Example usage:

  m.addConstr(z == or_(x, y))
  m.addConstr(z == or_([x, y]))

Return value:

Returns a GenExpr object.