Filter Content By
Version
Text Search
${sidebar_list_label} - Back
Filter by Language
Creating the environment
The first executable statement in our example obtains a Gurobi
environment (using the GRBEnv()
constructor):
// Create empty environment, set options, and start GRBEnv env = new GRBEnv(true); env.set("logFile", "mip1.log"); env.start();
In this call we requested an empty environment, choose a log file, and started the environment.
Later calls to create an optimization model will always require an environment, so environment creation is typically the first step in a Gurobi application. The constructor argument specifies the name of the log file.