13 lines
303 B
Python
13 lines
303 B
Python
|
|
# Python wrapper for model_builder.
|
||
|
|
|
||
|
|
load("@pybind11_bazel//:build_defs.bzl", "pybind_extension")
|
||
|
|
|
||
|
|
pybind_extension(
|
||
|
|
name = "sorted_interval_list",
|
||
|
|
srcs = ["sorted_interval_list.cc"],
|
||
|
|
visibility = ["//visibility:public"],
|
||
|
|
deps = [
|
||
|
|
"//ortools/util:sorted_interval_list",
|
||
|
|
],
|
||
|
|
)
|