GRBModel


GRBModel

Gurobi model object. Commonly used methods includeAddVar(adds a new decision variable to the model),AddConstr(adds a new constraint to the model),Optimize(optimizes the current model), andGet(retrieves the value of an attribute).

对象啊f this class have unmanaged resources associated with them. The class implements theIDisposableinterface.

While the .NET garbage collector will eventually collect an unusedGRBModelobject, the vast majority of the memory associated with a model is stored outside of the .NET heap. As a result, the garbage collector can't see this memory usage, and thus it can't take this quantity into account when deciding whether collection is necessary. We recommend that you callGRBModel.Disposewhen you are done using a model (or use the .NETusingstatement).



Subsections