Skip to content

Commit 42c0bb3

Browse files
committed
math_opt: python cleanup
1 parent 2190068 commit 42c0bb3

2 files changed

Lines changed: 3 additions & 0 deletions

File tree

ortools/math_opt/core/python/BUILD.bazel

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ pybind_extension(
5252
"//ortools/math_opt/core:solver_debug",
5353
"//ortools/util:solve_interrupter",
5454
"//ortools/util/python:py_solve_interrupter_lib",
55+
"@abseil-cpp//absl/base:nullability",
5556
"@abseil-cpp//absl/memory",
5657
"@abseil-cpp//absl/status:statusor",
5758
"@pybind11_abseil//pybind11_abseil:import_status_module",

ortools/math_opt/core/python/solver.cc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,14 @@
1717
#include <pybind11/pybind11.h>
1818
#include <pybind11/stl.h>
1919

20+
#include <cstdint>
2021
#include <functional>
2122
#include <memory>
2223
#include <string>
2324
#include <utility>
2425
#include <vector>
2526

27+
#include "absl/base/nullability.h"
2628
#include "absl/memory/memory.h"
2729
#include "absl/status/statusor.h"
2830
#include "ortools/base/status_macros.h"

0 commit comments

Comments
 (0)