1// Copyright 2010-2024 Google LLC
2// Licensed under the Apache License, Version 2.0 (the "License");
3// you may not use this file except in compliance with the License.
4// You may obtain a copy of the License at
6// http://www.apache.org/licenses/LICENSE-2.0
8// Unless required by applicable law or agreed to in writing, software
9// distributed under the License is distributed on an "AS IS" BASIS,
10// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11// See the License for the specific language governing permissions and
12// limitations under the License.
14// Proto messages specific to Gurobi.
17package operations_research.math_opt;
19// Parameters used to initialize the Gurobi solver.
20message GurobiInitializerProto {
23 string application_name = 2;
28 // An optional ISV key to use.
30 // See http://www.gurobi.com/products/licensing-pricing/isv-program.
34// Gurobi specific parameters for solving. See
35// https://www.gurobi.com/documentation/9.1/refman/parameters.html
36// for a list of possible parameters.
38// Example text proto to set the Barrier Iteration Limit:
39// parameters : [{name: "BarIterLimit" value: "10}]
41// With Gurobi, the order that parameters are applied can have an impact in rare
42// situations. Parameters are applied in the following order:
43// * LogToConsole is set from CommonSolveParameters.enable_output.
44// * Any common parameters not overwritten by GurobiParameters.
45// * param_values in iteration order (insertion order).
46// We set LogToConsole first because setting other parameters can generate
48message GurobiParametersProto {
53 repeated Parameter parameters = 1;