11
11
// See the License for the specific language governing permissions and
12
12
// limitations under the License.
13
13
14
+ #include < limits>
14
15
#include < string>
15
16
16
17
#include " ortools/base/init_google.h"
17
18
#include " ortools/base/logging.h"
18
- #include " ortools/linear_solver/linear_solver.h"
19
19
#include " ortools/linear_solver/linear_solver.pb.h"
20
+ #include " ortools/linear_solver/solve_mp_model.h"
20
21
21
22
namespace operations_research {
22
- void BuildLinearProgrammingMaxExample (MPSolver::OptimizationProblemType type) {
23
+ void BuildLinearProgrammingMaxExample (MPModelRequest::SolverType type) {
23
24
const double kObjCoef [] = {10.0 , 6.0 , 4.0 };
24
25
const std::string kVarName [] = {" x1" , " x2" , " x3" };
25
26
const int numVars = 3 ;
@@ -32,7 +33,7 @@ void BuildLinearProgrammingMaxExample(MPSolver::OptimizationProblemType type) {
32
33
kConstraintCoef3 };
33
34
const double kConstraintUb [] = {100.0 , 600.0 , 300.0 };
34
35
35
- const double infinity = MPSolver ::infinity ();
36
+ const double infinity = std::numeric_limits< double > ::infinity ();
36
37
MPModelProto model_proto;
37
38
model_proto.set_name (" Max_Example" );
38
39
@@ -62,19 +63,9 @@ void BuildLinearProgrammingMaxExample(MPSolver::OptimizationProblemType type) {
62
63
63
64
MPModelRequest model_request;
64
65
*model_request.mutable_model () = model_proto;
65
- #if defined(USE_GLOP)
66
- if (type == MPSolver::GLOP_LINEAR_PROGRAMMING) {
67
- model_request.set_solver_type (MPModelRequest::GLOP_LINEAR_PROGRAMMING);
68
- }
69
- #endif // USE_GLOP
70
- #if defined(USE_CLP)
71
- if (type == MPSolver::CLP_LINEAR_PROGRAMMING) {
72
- model_request.set_solver_type (MPModelRequest::CLP_LINEAR_PROGRAMMING);
73
- }
74
- #endif // USE_CLP
66
+ model_request.set_solver_type (type);
75
67
76
- MPSolutionResponse solution_response;
77
- MPSolver::SolveWithProto (model_request, &solution_response);
68
+ const MPSolutionResponse solution_response = SolveMPModel (model_request);
78
69
79
70
// The problem has an optimal solution.
80
71
CHECK_EQ (MPSOLVER_OPTIMAL, solution_response.status ());
@@ -89,11 +80,11 @@ void BuildLinearProgrammingMaxExample(MPSolver::OptimizationProblemType type) {
89
80
void RunAllExamples () {
90
81
#if defined(USE_GLOP)
91
82
LOG (INFO) << " ----- Running Max Example with GLOP -----" ;
92
- BuildLinearProgrammingMaxExample (MPSolver ::GLOP_LINEAR_PROGRAMMING);
83
+ BuildLinearProgrammingMaxExample (MPModelRequest ::GLOP_LINEAR_PROGRAMMING);
93
84
#endif // USE_GLOP
94
85
#if defined(USE_CLP)
95
86
LOG (INFO) << " ----- Running Max Example with Coin LP -----" ;
96
- BuildLinearProgrammingMaxExample (MPSolver ::CLP_LINEAR_PROGRAMMING);
87
+ BuildLinearProgrammingMaxExample (MPModelRequest ::CLP_LINEAR_PROGRAMMING);
97
88
#endif // USE_CLP
98
89
}
99
90
} // namespace operations_research
0 commit comments