Cookie Settings

Try our new documentation site (beta).

Filter Content By
Version
Table of contents
Filter by Language
C API Details
C++ API Details
GRBModel +
Java API Details
GRBModel +
.NET API Details
GRBModel +
Python API Details
Model +
Attributes
Parameters
Parameter Descriptions +


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 call GRBupdatemodel before copying it.

Return value:

A copy of the input model. A NULL return 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);