Reporting results - attributes

Once the optimization is complete, we can query the values of the attributes (which are implemented as .NET properties). In particular, we can query the VarName and X attributes to obtain the name and solution value for each variable:


      Console.WriteLine(x.VarName + " " + x.X);
      Console.WriteLine(y.VarName + " " + y.X);

We can also query the ObjVal attribute on the model to obtain the objective value for the current solution:


      Console.WriteLine("Obj: " + model.ObjVal);

The names and types of all model, variable, and constraint attributes can be found in the Attributes section of the Gurobi Reference Manual.