File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed
Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -119,12 +119,12 @@ cc_library(
119119 hdrs = ["carp_parser.h" ],
120120 deps = [
121121 ":simple_graph" ,
122- "//ortools/base" ,
123122 "//ortools/base:linked_hash_map" ,
124123 "//ortools/base:numbers" ,
125124 "//ortools/util:filelineiter" ,
126125 "@abseil-cpp//absl/algorithm:container" ,
127126 "@abseil-cpp//absl/log" ,
127+ "@abseil-cpp//absl/log:check" ,
128128 "@abseil-cpp//absl/strings" ,
129129 "@abseil-cpp//absl/types:span" ,
130130 ],
@@ -165,9 +165,9 @@ cc_library(
165165 deps = [
166166 ":simple_graph" ,
167167 "//ortools/base:linked_hash_map" ,
168- "//ortools/base:logging" ,
169168 "//ortools/base:numbers" ,
170169 "//ortools/util:filelineiter" ,
170+ "@abseil-cpp//absl/log:check" ,
171171 "@abseil-cpp//absl/strings" ,
172172 ],
173173)
Original file line number Diff line number Diff line change 5555#ifndef ORTOOLS_ROUTING_PARSERS_CARP_PARSER_H_
5656#define ORTOOLS_ROUTING_PARSERS_CARP_PARSER_H_
5757
58- #include < algorithm >
58+ #include < cstdint >
5959#include < string>
6060#include < string_view>
61- #include < vector>
6261
62+ #include " absl/log/check.h"
6363#include " absl/strings/string_view.h"
6464#include " absl/types/span.h"
6565#include " ortools/base/linked_hash_map.h"
66- #include " ortools/base/logging.h"
6766#include " ortools/routing/parsers/simple_graph.h"
6867
6968namespace operations_research ::routing {
Original file line number Diff line number Diff line change 7575#ifndef ORTOOLS_ROUTING_PARSERS_NEARP_PARSER_H_
7676#define ORTOOLS_ROUTING_PARSERS_NEARP_PARSER_H_
7777
78- #include < algorithm >
78+ #include < cstdint >
7979#include < string>
8080#include < string_view>
8181#include < vector>
8282
83+ #include " absl/log/check.h"
84+ #include " absl/strings/str_cat.h"
8385#include " absl/strings/string_view.h"
8486#include " ortools/base/linked_hash_map.h"
85- #include " ortools/base/logging.h"
8687#include " ortools/routing/parsers/simple_graph.h"
8788
8889namespace operations_research ::routing {
You can’t perform that action at this time.
0 commit comments