Skip to content

Commit 9f9bdb6

Browse files
committed
updates
1 parent 40052df commit 9f9bdb6

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

ortools/routing/parsers/BUILD.bazel

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
)

ortools/routing/parsers/carp_parser.h

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,15 +55,14 @@
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

6968
namespace operations_research::routing {

ortools/routing/parsers/nearp_parser.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,14 +75,15 @@
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

8889
namespace operations_research::routing {

0 commit comments

Comments
 (0)