| Overview | Group | Tree | Graph | Index | Concepts |
This operator creates and returns a constraint: the negation of its argument, a constraint.
When you create a constraint, it has no effect until you post it.
See Also:
IlcConstraint, operator==, operator<=, operator>=
This overloaded C++ operator returns a constraint
that is the negation of its argument.
In order to be taken into account, this constraint must be added to a model
and extracted by an algorithm, such as IloCplex
or IloSolver.
This operator creates a new
IloPredicate<IloObject>
instance from a single
IloPredicate<IloObject> instance.
The semantics of the new instance is a logical NOT
semantics of the pred. That is, the new predicate will
return IloTrue for a particular object if and only if
pred returns IloFalse for that
object.
For more information, see Selectors.