Files
ortools-clone/ortools/math_opt/samples/python/BUILD.bazel
2023-11-17 16:25:02 +01:00

116 lines
2.8 KiB
Python

# Copyright 2010-2022 Google LLC
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
load("@pip_deps//:requirements.bzl", "requirement")
load("@rules_python//python:defs.bzl", "py_binary")
py_binary(
name = "tsp",
srcs = ["tsp.py"],
python_version = "PY3",
srcs_version = "PY3",
deps = [
requirement("absl-py"),
requirement("svgwrite"),
"//ortools/math_opt/python:mathopt",
],
)
py_binary(
name = "basic_example",
srcs = ["basic_example.py"],
python_version = "PY3",
srcs_version = "PY3",
deps = [
requirement("absl-py"),
"//ortools/math_opt/python:mathopt",
],
)
py_binary(
name = "linear_programming",
srcs = ["linear_programming.py"],
python_version = "PY3",
srcs_version = "PY3",
deps = [
requirement("absl-py"),
"//ortools/math_opt/python:mathopt",
],
)
py_binary(
name = "integer_programming",
srcs = ["integer_programming.py"],
python_version = "PY3",
srcs_version = "PY3",
deps = [
requirement("absl-py"),
"//ortools/math_opt/python:mathopt",
],
)
py_binary(
name = "advanced_linear_programming",
srcs = ["advanced_linear_programming.py"],
python_version = "PY3",
srcs_version = "PY3",
deps = [
requirement("absl-py"),
"//ortools/math_opt/python:mathopt",
],
)
py_binary(
name = "cutting_stock",
srcs = ["cutting_stock.py"],
python_version = "PY3",
srcs_version = "PY3",
deps = [
requirement("absl-py"),
"//ortools/math_opt/python:mathopt",
],
)
py_binary(
name = "facility_lp_benders",
srcs = ["facility_lp_benders.py"],
python_version = "PY3",
srcs_version = "PY3",
deps = [
requirement("absl-py"),
requirement("numpy"),
"//ortools/math_opt/python:mathopt",
],
)
py_binary(
name = "linear_regression",
srcs = ["linear_regression.py"],
python_version = "PY3",
srcs_version = "PY3",
deps = [
requirement("absl-py"),
requirement("numpy"),
"//ortools/math_opt/python:mathopt",
],
)
py_binary(
name = "time_indexed_scheduling",
srcs = ["time_indexed_scheduling.py"],
deps = [
requirement("absl-py"),
"//ortools/math_opt/python:mathopt",
],
)