Skip to content

Commit

Permalink
minor sync
Browse files Browse the repository at this point in the history
  • Loading branch information
lperron committed Oct 16, 2023
1 parent 7841ed4 commit 1ad4e80
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion ortools/port/file.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@

namespace operations_research {

// See ortools/base/helpers.h
::absl::Status PortableFileSetContents(absl::string_view file_name,
absl::string_view content);

Expand Down
2 changes: 1 addition & 1 deletion ortools/python/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ py_binary(
requirement("svgwrite"),
requirement("plotly"),
],
)
)
2 changes: 1 addition & 1 deletion ortools/sat/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ cc_library(
"//ortools/algorithms:binary_search",
"//ortools/util:sorted_interval_list",
"@com_google_absl//absl/functional:bind_front",
"@com_google_absl//absl/log",
"@com_google_absl//absl/log",
"@com_google_absl//absl/random",
"@com_google_absl//absl/strings",
"@com_google_absl//absl/time",
Expand Down
1 change: 0 additions & 1 deletion ortools/util/fp_utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,6 @@ inline bool IsIntegerWithinTolerance(FloatType x, FloatType tolerance) {

// Handy alternatives to EXPECT_NEAR(), using relative and absolute tolerance
// instead of relative tolerance only, and with a proper support for infinity.
// TODO(user): investigate moving this to ortools/base/ or some other place.
#define EXPECT_COMPARABLE(expected, obtained, epsilon) \
EXPECT_TRUE(operations_research::AreWithinAbsoluteOrRelativeTolerances( \
expected, obtained, epsilon, epsilon)) \
Expand Down

0 comments on commit 1ad4e80

Please sign in to comment.