FRAMES NO FRAMES

IloEqMax

public IloConstraint IloEqMax(const IloEnv, const IloIntSetVar var1, const IloIntVar var2, const IloIntToIntFunction f)
public IloConstraint IloEqMax(const IloEnv, const IloIntSetVar var1, const IloIntVar var2, const IloIntToIntVarFunction f)
Definition file: ilconcert/iloset.h
For IBM® ILOG® Solver: a constraint forcing a variable to the maximum of returned values.

This function creates and returns a constraint (an instance of IloConstraint) for use in a model. The constraint forces var2 to the maximum of the values returned by the function f when it is applied to the variable var1.

In order for the constraint to take effect, you must add it to a model with the template IloAdd or the member function IloModel::add and extract the model for an algorithm with the member function IloAlgorithm::extract.