Overview | Group | Tree | Graph | Index | Concepts |
The routine CPXcloneprob
can be used to create a new CPLEX
problem object and copy all the problem data from an existing problem object
to it. Solution and starting information is not copied.
Example
copy = CPXcloneprob (env, lp, &status);
env | A pointer to the CPLEX environment as returned by |
lp | A pointer to a CPLEX problem object of which a copy is to be created. |
status_p | A pointer to an integer used to return any error code produced by this routine. Example copy = CPXcloneprob (env, lp, &status); |