Files
ortools-clone/examples/notebook/sat/assignment_groups_sat.ipynb
2024-05-30 10:52:46 +02:00

199 lines
6.5 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": [
"# assignment_groups_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/assignment_groups_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/assignment_groups_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",
"Solves an assignment problem for given group of workers."
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "code",
"metadata": {},
"outputs": [],
"source": [
"from ortools.sat.python import cp_model\n",
"\n",
"\n",
"def main() -> None:\n",
" # Data\n",
" costs = [\n",
" [90, 76, 75, 70, 50, 74],\n",
" [35, 85, 55, 65, 48, 101],\n",
" [125, 95, 90, 105, 59, 120],\n",
" [45, 110, 95, 115, 104, 83],\n",
" [60, 105, 80, 75, 59, 62],\n",
" [45, 65, 110, 95, 47, 31],\n",
" [38, 51, 107, 41, 69, 99],\n",
" [47, 85, 57, 71, 92, 77],\n",
" [39, 63, 97, 49, 118, 56],\n",
" [47, 101, 71, 60, 88, 109],\n",
" [17, 39, 103, 64, 61, 92],\n",
" [101, 45, 83, 59, 92, 27],\n",
" ]\n",
" num_workers = len(costs)\n",
" num_tasks = len(costs[0])\n",
"\n",
" # Allowed groups of workers:\n",
" group1 = [\n",
" [0, 0, 1, 1], # Workers 2, 3\n",
" [0, 1, 0, 1], # Workers 1, 3\n",
" [0, 1, 1, 0], # Workers 1, 2\n",
" [1, 1, 0, 0], # Workers 0, 1\n",
" [1, 0, 1, 0], # Workers 0, 2\n",
" ]\n",
"\n",
" group2 = [\n",
" [0, 0, 1, 1], # Workers 6, 7\n",
" [0, 1, 0, 1], # Workers 5, 7\n",
" [0, 1, 1, 0], # Workers 5, 6\n",
" [1, 1, 0, 0], # Workers 4, 5\n",
" [1, 0, 0, 1], # Workers 4, 7\n",
" ]\n",
"\n",
" group3 = [\n",
" [0, 0, 1, 1], # Workers 10, 11\n",
" [0, 1, 0, 1], # Workers 9, 11\n",
" [0, 1, 1, 0], # Workers 9, 10\n",
" [1, 0, 1, 0], # Workers 8, 10\n",
" [1, 0, 0, 1], # Workers 8, 11\n",
" ]\n",
"\n",
" # Model\n",
" model = cp_model.CpModel()\n",
"\n",
" # Variables\n",
" x = {}\n",
" for worker in range(num_workers):\n",
" for task in range(num_tasks):\n",
" x[worker, task] = model.new_bool_var(f\"x[{worker},{task}]\")\n",
"\n",
" # Constraints\n",
" # Each worker is assigned to at most one task.\n",
" for worker in range(num_workers):\n",
" model.add_at_most_one(x[worker, task] for task in range(num_tasks))\n",
"\n",
" # Each task is assigned to exactly one worker.\n",
" for task in range(num_tasks):\n",
" model.add_exactly_one(x[worker, task] for worker in range(num_workers))\n",
"\n",
" # Create variables for each worker, indicating whether they work on some task.\n",
" work = {}\n",
" for worker in range(num_workers):\n",
" work[worker] = model.new_bool_var(f\"work[{worker}]\")\n",
"\n",
" for worker in range(num_workers):\n",
" for task in range(num_tasks):\n",
" model.add(work[worker] == sum(x[worker, task] for task in range(num_tasks)))\n",
"\n",
" # Define the allowed groups of worders\n",
" model.add_allowed_assignments([work[0], work[1], work[2], work[3]], group1)\n",
" model.add_allowed_assignments([work[4], work[5], work[6], work[7]], group2)\n",
" model.add_allowed_assignments([work[8], work[9], work[10], work[11]], group3)\n",
"\n",
" # Objective\n",
" objective_terms = []\n",
" for worker in range(num_workers):\n",
" for task in range(num_tasks):\n",
" objective_terms.append(costs[worker][task] * x[worker, task])\n",
" model.minimize(sum(objective_terms))\n",
"\n",
" # Solve\n",
" solver = cp_model.CpSolver()\n",
" status = solver.solve(model)\n",
"\n",
" # Print solution.\n",
" if status == cp_model.OPTIMAL or status == cp_model.FEASIBLE:\n",
" print(f\"Total cost = {solver.objective_value}\\n\")\n",
" for worker in range(num_workers):\n",
" for task in range(num_tasks):\n",
" if solver.boolean_value(x[worker, task]):\n",
" print(\n",
" f\"Worker {worker} assigned to task {task}.\"\n",
" + f\" Cost = {costs[worker][task]}\"\n",
" )\n",
" else:\n",
" print(\"No solution found.\")\n",
"\n",
"\n",
"main()\n",
"\n"
]
}
],
"metadata": {},
"nbformat": 4,
"nbformat_minor": 5
}