GRBModel()

Constructor for GRBModel. The simplest version creates an empty model. You can then call AddVar and AddConstr to populate the model with variables and constraints. The more complex constructors can read a model from a file, or make a copy of an existing model.

GRBModel GRBModel ( GRBEnv env )

GRBModel GRBModel ( GRBEnv env,
    string filename )

GRBModel GRBModel ( GRBModel model )