- Procedure GMP::Solution::Move(GMP, fromSolution, toSolution)
GMP::Solution::Move
The procedure GMP::Solution::Move
moves one solution to another
solution in the solution repository of a generated mathematical program.
GMP::Solution::Move(
GMP, ! (input) a generated mathematical program
fromSolution, ! (input) a solution
toSolution ! (input) a solution
)
Arguments
- GMP
An element in
AllGeneratedMathematicalPrograms
.- fromSolution
An integer scalar reference to a solution.
- toSolution
An integer scalar reference to a solution.
Return Value
The procedure returns 1 on success, or 0 otherwise.
Note
After calling this procedure, the solution at position fromSolution in
the solution repository will be empty. This is not the case if you use
the procedure GMP::Solution::Copy
.
See also
The routines GMP::Instance::Generate
and GMP::Solution::Copy
.