Overview | Group | Tree | Graph | Index | Concepts |
This function takes solution solution
and
delta delta
, and returns a goal for the specified solver
that:
delta
.
solution
that does not appear in
delta
.
solution
as modified by
delta
.The goal can fail at 1) or 2) if any constraints are violated, that is, the goal fails if the proposed change to the solution is illegal.
Implementation
IloCommitDelta
can be implemented as:
IlcGoal IloCommitDelta(solver, solution, delta) { return IlcAnd(IloTestDelta(solver, solution, delta), IloStoreSolution(solver, solution)); }
For more information, see IloSolution
in the
IBM ILOG Concert Technology Reference Manual.
See Also:
IloStoreSolution, IloTestDelta