GRBcopymodel


GRBcopymodel

GRBmodel * GRBcopymodel( GRBmodel *model )

Create a copy of an existing model. Note that due to the lazy update approach in Gurobi, you have to callGRBupdatemodelbefore copying it.

Return value:

A copy of the input model. ANULLreturn value indicates that a problem was encountered.

Arguments:

model: The model to copy.

Example usage:

GRBupdatemodel(orig); /* if you have unstaged changes in orig */ GRBmodel *copy = GRBcopymodel(orig);