From d41e49724a3f1676f0ee3faea4733fb5fd068c24 Mon Sep 17 00:00:00 2001 From: Laurent Perron Date: Thu, 4 Dec 2025 15:51:30 +0100 Subject: [PATCH] reformat --- .../linear_solver/proto_solver/scip_proto_solver.cc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ortools/linear_solver/proto_solver/scip_proto_solver.cc b/ortools/linear_solver/proto_solver/scip_proto_solver.cc index d96d74755d..02c7268504 100644 --- a/ortools/linear_solver/proto_solver/scip_proto_solver.cc +++ b/ortools/linear_solver/proto_solver/scip_proto_solver.cc @@ -38,13 +38,7 @@ #include "absl/strings/string_view.h" #include "absl/time/clock.h" #include "absl/time/time.h" -#include "ortools/base/status_macros.h" #include "ortools/base/timer.h" -#include "ortools/linear_solver/linear_solver.pb.h" -#include "ortools/linear_solver/model_validator.h" -#include "ortools/linear_solver/proto_solver/scip_params.h" -#include "ortools/linear_solver/scip_helper_macros.h" -#include "ortools/util/lazy_mutable_copy.h" #include "scip/cons_and.h" #include "scip/cons_disjunction.h" #include "scip/cons_indicator.h" @@ -57,6 +51,12 @@ #else #include "scip/cons_quadratic.h" #endif // SCIP_VERSION_MAJOR >= 10 +#include "ortools/base/status_macros.h" +#include "ortools/linear_solver/linear_solver.pb.h" +#include "ortools/linear_solver/model_validator.h" +#include "ortools/linear_solver/proto_solver/scip_params.h" +#include "ortools/linear_solver/scip_helper_macros.h" +#include "ortools/util/lazy_mutable_copy.h" #include "scip/cons_sos1.h" #include "scip/cons_sos2.h" #include "scip/def.h"