169 lines
5.3 KiB
Plaintext
169 lines
5.3 KiB
Plaintext
{
|
|
"cells": [
|
|
{
|
|
"cell_type": "markdown",
|
|
"id": "google",
|
|
"metadata": {},
|
|
"source": [
|
|
"##### Copyright 2023 Google LLC."
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "markdown",
|
|
"id": "apache",
|
|
"metadata": {},
|
|
"source": [
|
|
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
|
|
"you may not use this file except in compliance with the License.\n",
|
|
"You may obtain a copy of the License at\n",
|
|
"\n",
|
|
" http://www.apache.org/licenses/LICENSE-2.0\n",
|
|
"\n",
|
|
"Unless required by applicable law or agreed to in writing, software\n",
|
|
"distributed under the License is distributed on an \"AS IS\" BASIS,\n",
|
|
"WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n",
|
|
"See the License for the specific language governing permissions and\n",
|
|
"limitations under the License.\n"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "markdown",
|
|
"id": "basename",
|
|
"metadata": {},
|
|
"source": [
|
|
"# step_function_sample_sat"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "markdown",
|
|
"id": "link",
|
|
"metadata": {},
|
|
"source": [
|
|
"<table align=\"left\">\n",
|
|
"<td>\n",
|
|
"<a href=\"https://colab.research.google.com/github/google/or-tools/blob/main/examples/notebook/sat/step_function_sample_sat.ipynb\"><img src=\"https://raw.githubusercontent.com/google/or-tools/main/tools/colab_32px.png\"/>Run in Google Colab</a>\n",
|
|
"</td>\n",
|
|
"<td>\n",
|
|
"<a href=\"https://github.com/google/or-tools/blob/main/ortools/sat/samples/step_function_sample_sat.py\"><img src=\"https://raw.githubusercontent.com/google/or-tools/main/tools/github_32px.png\"/>View source on GitHub</a>\n",
|
|
"</td>\n",
|
|
"</table>"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "markdown",
|
|
"id": "doc",
|
|
"metadata": {},
|
|
"source": [
|
|
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": null,
|
|
"id": "install",
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"%pip install ortools"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "markdown",
|
|
"id": "description",
|
|
"metadata": {},
|
|
"source": [
|
|
"\n",
|
|
"Implements a step function.\n"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": null,
|
|
"id": "code",
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"from ortools.sat.python import cp_model\n",
|
|
"\n",
|
|
"\n",
|
|
"class VarArraySolutionPrinter(cp_model.CpSolverSolutionCallback):\n",
|
|
" \"\"\"Print intermediate solutions.\"\"\"\n",
|
|
"\n",
|
|
" def __init__(self, variables: list[cp_model.IntVar]):\n",
|
|
" cp_model.CpSolverSolutionCallback.__init__(self)\n",
|
|
" self.__variables = variables\n",
|
|
"\n",
|
|
" def on_solution_callback(self) -> None:\n",
|
|
" for v in self.__variables:\n",
|
|
" print(f\"{v}={self.value(v)}\", end=\" \")\n",
|
|
" print()\n",
|
|
"\n",
|
|
"\n",
|
|
"def step_function_sample_sat():\n",
|
|
" \"\"\"Encode the step function.\"\"\"\n",
|
|
"\n",
|
|
" # Model.\n",
|
|
" model = cp_model.CpModel()\n",
|
|
"\n",
|
|
" # Declare our primary variable.\n",
|
|
" x = model.new_int_var(0, 20, \"x\")\n",
|
|
"\n",
|
|
" # Create the expression variable and implement the step function\n",
|
|
" # Note it is not defined for x == 2.\n",
|
|
" #\n",
|
|
" # - 3\n",
|
|
" # -- -- --------- 2\n",
|
|
" # 1\n",
|
|
" # -- --- 0\n",
|
|
" # 0 ================ 20\n",
|
|
" #\n",
|
|
" expr = model.new_int_var(0, 3, \"expr\")\n",
|
|
"\n",
|
|
" # expr == 0 on [5, 6] U [8, 10]\n",
|
|
" b0 = model.new_bool_var(\"b0\")\n",
|
|
" model.add_linear_expression_in_domain(\n",
|
|
" x, cp_model.Domain.from_intervals([(5, 6), (8, 10)])\n",
|
|
" ).only_enforce_if(b0)\n",
|
|
" model.add(expr == 0).only_enforce_if(b0)\n",
|
|
"\n",
|
|
" # expr == 2 on [0, 1] U [3, 4] U [11, 20]\n",
|
|
" b2 = model.new_bool_var(\"b2\")\n",
|
|
" model.add_linear_expression_in_domain(\n",
|
|
" x, cp_model.Domain.from_intervals([(0, 1), (3, 4), (11, 20)])\n",
|
|
" ).only_enforce_if(b2)\n",
|
|
" model.add(expr == 2).only_enforce_if(b2)\n",
|
|
"\n",
|
|
" # expr == 3 when x == 7\n",
|
|
" b3 = model.new_bool_var(\"b3\")\n",
|
|
" model.add(x == 7).only_enforce_if(b3)\n",
|
|
" model.add(expr == 3).only_enforce_if(b3)\n",
|
|
"\n",
|
|
" # At least one bi is true. (we could use an exactly one constraint).\n",
|
|
" model.add_bool_or(b0, b2, b3)\n",
|
|
"\n",
|
|
" # Search for x values in increasing order.\n",
|
|
" model.add_decision_strategy([x], cp_model.CHOOSE_FIRST, cp_model.SELECT_MIN_VALUE)\n",
|
|
"\n",
|
|
" # Create a solver and solve with a fixed search.\n",
|
|
" solver = cp_model.CpSolver()\n",
|
|
"\n",
|
|
" # Force the solver to follow the decision strategy exactly.\n",
|
|
" solver.parameters.search_branching = cp_model.FIXED_SEARCH\n",
|
|
" # Enumerate all solutions.\n",
|
|
" solver.parameters.enumerate_all_solutions = True\n",
|
|
"\n",
|
|
" # Search and print out all solutions.\n",
|
|
" solution_printer = VarArraySolutionPrinter([x, expr])\n",
|
|
" solver.solve(model, solution_printer)\n",
|
|
"\n",
|
|
"\n",
|
|
"step_function_sample_sat()\n",
|
|
"\n"
|
|
]
|
|
}
|
|
],
|
|
"metadata": {},
|
|
"nbformat": 4,
|
|
"nbformat_minor": 5
|
|
}
|