Google OR-Tools v9.11
a fast and portable software suite for combinatorial optimization
Loading...
Searching...
No Matches
gurobi.proto
Go to the documentation of this file.
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
5//
6// http://www.apache.org/licenses/LICENSE-2.0
7//
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.
13
14// Proto messages specific to Gurobi.
15syntax = "proto3";
16
17package operations_research.math_opt;
18
19// Parameters used to initialize the Gurobi solver.
20message GurobiInitializerProto {
21 message ISVKey {
22 string name = 1;
23 string application_name = 2;
24 int32 expiration = 3;
25 string key = 4;
26 }
27
28 // An optional ISV key to use.
29 //
30 // See http://www.gurobi.com/products/licensing-pricing/isv-program.
31 ISVKey isv_key = 1;
32}
33
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.
37//
38// Example text proto to set the Barrier Iteration Limit:
39// parameters : [{name: "BarIterLimit" value: "10}]
40//
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
47// output.
48message GurobiParametersProto {
49 message Parameter {
50 string name = 1;
51 string value = 2;
52 }
53 repeated Parameter parameters = 1;
54}