Overview | Group | Tree | Graph | Index | Concepts |
The IloGeLex
function returns a constraint which
maintains two arrays to be lexicographically ordered.
More specifically, IloGeLex(x, y)
maintains that
x
is greater than or equal to y
in the
lexicographical sense of the term. This mean that either both arrays
are equal or that there exists i < size(x)
such that for all
j < i
, x[j] = y[j]
and
x[i] > y[i]
.
Note that the size of the two arrays must be the same.
See Also: