Skip to content

Commit

Permalink
notebook: regenerate all
Browse files Browse the repository at this point in the history
  • Loading branch information
Mizux committed Jan 27, 2025
1 parent 6eb0802 commit 88dfe4d
Show file tree
Hide file tree
Showing 292 changed files with 1,969 additions and 304 deletions.
6 changes: 5 additions & 1 deletion examples/notebook/algorithms/knapsack.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,11 @@
]
}
],
"metadata": {},
"metadata": {
"language_info": {
"name": "python"
}
},
"nbformat": 4,
"nbformat_minor": 5
}
126 changes: 126 additions & 0 deletions examples/notebook/algorithms/set_cover.ipynb
Original file line number Diff line number Diff line change
@@ -0,0 +1,126 @@
{
"cells": [
{
"cell_type": "markdown",
"id": "google",
"metadata": {},
"source": [
"##### Copyright 2024 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": [
"# set_cover"
]
},
{
"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/algorithms/set_cover.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/algorithms/samples/set_cover.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",
"A simple set-covering problem.\n"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "code",
"metadata": {},
"outputs": [],
"source": [
"from ortools.algorithms.python import set_cover\n",
"\n",
"\n",
"def main():\n",
" model = set_cover.SetCoverModel()\n",
" model.add_empty_subset(2.0)\n",
" model.add_element_to_last_subset(0)\n",
" model.add_empty_subset(2.0)\n",
" model.add_element_to_last_subset(1)\n",
" model.add_empty_subset(1.0)\n",
" model.add_element_to_last_subset(0)\n",
" model.add_element_to_last_subset(1)\n",
"\n",
" inv = set_cover.SetCoverInvariant(model)\n",
" greedy = set_cover.GreedySolutionGenerator(inv)\n",
" has_found = greedy.next_solution()\n",
" if not has_found:\n",
" print(\"No solution found by the greedy heuristic.\")\n",
" return\n",
" solution = inv.export_solution_as_proto()\n",
"\n",
" print(f\"Total cost: {solution.cost}\") # == inv.cost()\n",
" print(f\"Total number of selected subsets: {solution.num_subsets}\")\n",
" print(\"Chosen subsets:\")\n",
" for subset in solution.subset:\n",
" print(f\" {subset}\")\n",
"\n",
"\n",
"main()\n",
"\n"
]
}
],
"metadata": {
"language_info": {
"name": "python"
}
},
"nbformat": 4,
"nbformat_minor": 5
}
6 changes: 5 additions & 1 deletion examples/notebook/algorithms/simple_knapsack_program.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,11 @@
]
}
],
"metadata": {},
"metadata": {
"language_info": {
"name": "python"
}
},
"nbformat": 4,
"nbformat_minor": 5
}
6 changes: 5 additions & 1 deletion examples/notebook/constraint_solver/cp_is_fun_cp.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,11 @@
]
}
],
"metadata": {},
"metadata": {
"language_info": {
"name": "python"
}
},
"nbformat": 4,
"nbformat_minor": 5
}
6 changes: 5 additions & 1 deletion examples/notebook/constraint_solver/nqueens_cp.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,11 @@
]
}
],
"metadata": {},
"metadata": {
"language_info": {
"name": "python"
}
},
"nbformat": 4,
"nbformat_minor": 5
}
6 changes: 5 additions & 1 deletion examples/notebook/constraint_solver/simple_cp_program.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,11 @@
]
}
],
"metadata": {},
"metadata": {
"language_info": {
"name": "python"
}
},
"nbformat": 4,
"nbformat_minor": 5
}
6 changes: 5 additions & 1 deletion examples/notebook/contrib/3_jugs_mip.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,11 @@
]
}
],
"metadata": {},
"metadata": {
"language_info": {
"name": "python"
}
},
"nbformat": 4,
"nbformat_minor": 5
}
6 changes: 5 additions & 1 deletion examples/notebook/contrib/3_jugs_regular.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,11 @@
]
}
],
"metadata": {},
"metadata": {
"language_info": {
"name": "python"
}
},
"nbformat": 4,
"nbformat_minor": 5
}
6 changes: 5 additions & 1 deletion examples/notebook/contrib/a_round_of_golf.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,11 @@
]
}
],
"metadata": {},
"metadata": {
"language_info": {
"name": "python"
}
},
"nbformat": 4,
"nbformat_minor": 5
}
6 changes: 5 additions & 1 deletion examples/notebook/contrib/all_interval.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,11 @@
]
}
],
"metadata": {},
"metadata": {
"language_info": {
"name": "python"
}
},
"nbformat": 4,
"nbformat_minor": 5
}
6 changes: 5 additions & 1 deletion examples/notebook/contrib/alldifferent_except_0.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,11 @@
]
}
],
"metadata": {},
"metadata": {
"language_info": {
"name": "python"
}
},
"nbformat": 4,
"nbformat_minor": 5
}
6 changes: 5 additions & 1 deletion examples/notebook/contrib/alphametic.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,11 @@
]
}
],
"metadata": {},
"metadata": {
"language_info": {
"name": "python"
}
},
"nbformat": 4,
"nbformat_minor": 5
}
6 changes: 5 additions & 1 deletion examples/notebook/contrib/assignment.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,11 @@
]
}
],
"metadata": {},
"metadata": {
"language_info": {
"name": "python"
}
},
"nbformat": 4,
"nbformat_minor": 5
}
6 changes: 5 additions & 1 deletion examples/notebook/contrib/assignment6_mip.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,11 @@
]
}
],
"metadata": {},
"metadata": {
"language_info": {
"name": "python"
}
},
"nbformat": 4,
"nbformat_minor": 5
}
6 changes: 5 additions & 1 deletion examples/notebook/contrib/bacp.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,11 @@
]
}
],
"metadata": {},
"metadata": {
"language_info": {
"name": "python"
}
},
"nbformat": 4,
"nbformat_minor": 5
}
6 changes: 5 additions & 1 deletion examples/notebook/contrib/blending.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,11 @@
]
}
],
"metadata": {},
"metadata": {
"language_info": {
"name": "python"
}
},
"nbformat": 4,
"nbformat_minor": 5
}
6 changes: 5 additions & 1 deletion examples/notebook/contrib/broken_weights.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,11 @@
]
}
],
"metadata": {},
"metadata": {
"language_info": {
"name": "python"
}
},
"nbformat": 4,
"nbformat_minor": 5
}
6 changes: 5 additions & 1 deletion examples/notebook/contrib/bus_schedule.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,11 @@
]
}
],
"metadata": {},
"metadata": {
"language_info": {
"name": "python"
}
},
"nbformat": 4,
"nbformat_minor": 5
}
6 changes: 5 additions & 1 deletion examples/notebook/contrib/car.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,11 @@
]
}
],
"metadata": {},
"metadata": {
"language_info": {
"name": "python"
}
},
"nbformat": 4,
"nbformat_minor": 5
}
6 changes: 5 additions & 1 deletion examples/notebook/contrib/check_dependencies.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,11 @@
]
}
],
"metadata": {},
"metadata": {
"language_info": {
"name": "python"
}
},
"nbformat": 4,
"nbformat_minor": 5
}
6 changes: 5 additions & 1 deletion examples/notebook/contrib/circuit.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,11 @@
]
}
],
"metadata": {},
"metadata": {
"language_info": {
"name": "python"
}
},
"nbformat": 4,
"nbformat_minor": 5
}
6 changes: 5 additions & 1 deletion examples/notebook/contrib/coins3.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,11 @@
]
}
],
"metadata": {},
"metadata": {
"language_info": {
"name": "python"
}
},
"nbformat": 4,
"nbformat_minor": 5
}
Loading

0 comments on commit 88dfe4d

Please sign in to comment.