NO FRAMES

IloMin

public IloNumToNumStepFunction IloMin(const IloNumToNumStepFunction f1, const IloNumToNumStepFunction f2)
Definition file: ilconcert/ilonumfunc.h
This operator creates and returns a function equal to the minimal value of the functions f1 and f2.

This operator creates and returns a function equal to the minimal value of the functions f1 and f2. That is, for all points x in the definition interval, the resulting function is equal to the min(f1(x), f2(x)). The argument functions f1 and f2 must be defined on the same interval. The resulting function is defined on the same interval as the arguments. See also: IloNumToNumStepFunction.


IloMin

public IloNum IloMin(const IloNumArray vals)
public IloNum IloMin(IloNum val1, IloNum val2)
public IloInt IloMin(const IloIntArray vals)
public IloNumExprArg IloMin(const IloNumExprArray exprs)
public IloIntExprArg IloMin(const IloIntExprArray exprs)
public IloNumExprArg IloMin(const IloNumExprArg x, const IloNumExprArg y)
public IloNumExprArg IloMin(const IloNumExprArg x, IloNum y)
public IloNumExprArg IloMin(IloNum x, const IloNumExprArg y)
public IloIntExprArg IloMin(const IloIntExprArg x, const IloIntExprArg y)
public IloIntExprArg IloMin(const IloIntExprArg x, IloInt y)
public IloNumExprArg IloMin(const IloIntExprArg x, IloNum y)
public IloIntExprArg IloMin(const IloIntExprArg x, int y)
public IloIntExprArg IloMin(IloInt x, const IloIntExprArg y)
public IloNumExprArg IloMin(IloNum x, const IloIntExprArg y)
public IloIntExprArg IloMin(int x, const IloIntExprArg y)
Definition file: ilconcert/iloexpression.h
Returns a numeric value representing the min of numeric values.

These functions compare their arguments and return the least value. When its argument is an array, the function compares the elements of that array and returns the least value.