Update notebooks...

This commit is contained in:
Corentin Le Molgat
2021-12-06 10:19:50 +01:00
parent 07127d463c
commit 949ff20da4
260 changed files with 4680 additions and 2141 deletions

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "93bcd319",
"id": "6fe774c1",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "971cfc26",
"id": "19108444",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "a7f5d600",
"id": "50a4cdf8",
"metadata": {},
"source": [
"# knapsack"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "e6c2754f",
"id": "a3979fa6",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "c854806a",
"id": "f65ba5f9",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "dfe10e1c",
"id": "396ac14d",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "b80c9466",
"id": "6b82ee54",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "50621336",
"id": "0e92d630",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "641d7beb",
"id": "7ce7f69f",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "787d1364",
"id": "780fc17d",
"metadata": {},
"source": [
"# simple_knapsack_program"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "f5664c71",
"id": "40d24637",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "108e02f7",
"id": "9ae680d7",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "d4853051",
"id": "0f01b421",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "7907fdb4",
"id": "ee3d56b5",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -0,0 +1,163 @@
{
"cells": [
{
"cell_type": "markdown",
"id": "c9285a0d",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
]
},
{
"cell_type": "markdown",
"id": "19e19090",
"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": "9ed9fd67",
"metadata": {},
"source": [
"# cp_is_fun_cp"
]
},
{
"cell_type": "markdown",
"id": "21260bf9",
"metadata": {},
"source": [
"<table align=\"left\">\n",
"<td>\n",
"<a href=\"https://colab.research.google.com/github/google/or-tools/blob/master/examples/notebook/constraint_solver/cp_is_fun_cp.ipynb\"><img src=\"https://raw.githubusercontent.com/google/or-tools/master/tools/colab_32px.png\"/>Run in Google Colab</a>\n",
"</td>\n",
"<td>\n",
"<a href=\"https://github.com/google/or-tools/blob/master/ortools/constraint_solver/samples/cp_is_fun_cp.py\"><img src=\"https://raw.githubusercontent.com/google/or-tools/master/tools/github_32px.png\"/>View source on GitHub</a>\n",
"</td>\n",
"</table>"
]
},
{
"cell_type": "markdown",
"id": "ee1a66c7",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "cf537144",
"metadata": {},
"outputs": [],
"source": [
"!pip install ortools"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "fa0154fd",
"metadata": {},
"outputs": [],
"source": [
"#!/usr/bin/env python3\n",
"# Copyright 2010-2021 Google LLC\n",
"# 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",
"# [START program]\n",
"\"\"\"Cryptarithmetic puzzle.\n",
"\n",
"First attempt to solve equation CP + IS + FUN = TRUE\n",
"where each letter represents a unique digit.\n",
"\n",
"This problem has 72 different solutions in base 10.\n",
"\"\"\"\n",
"# [START import]\n",
"from ortools.constraint_solver import pywrapcp\n",
"# [END import]\n",
"\n",
"\n",
"# Constraint programming engine\n",
"# [START solver]\n",
"solver = pywrapcp.Solver('CP is fun!')\n",
"# [END solver]\n",
"\n",
"# [START variables]\n",
"base = 10\n",
"\n",
"# Decision variables.\n",
"digits = list(range(0, base))\n",
"digits_without_zero = list(range(1, base))\n",
"c = solver.IntVar(digits_without_zero, 'C')\n",
"p = solver.IntVar(digits, 'P')\n",
"i = solver.IntVar(digits_without_zero, 'I')\n",
"s = solver.IntVar(digits, 'S')\n",
"f = solver.IntVar(digits_without_zero, 'F')\n",
"u = solver.IntVar(digits, 'U')\n",
"n = solver.IntVar(digits, 'N')\n",
"t = solver.IntVar(digits_without_zero, 'T')\n",
"r = solver.IntVar(digits, 'R')\n",
"e = solver.IntVar(digits, 'E')\n",
"\n",
"# We need to group variables in a list to use the constraint AllDifferent.\n",
"letters = [c, p, i, s, f, u, n, t, r, e]\n",
"\n",
"# Verify that we have enough digits.\n",
"assert base >= len(letters)\n",
"# [END variables]\n",
"\n",
"# Define constraints.\n",
"# [START constraints]\n",
"solver.Add(solver.AllDifferent(letters))\n",
"\n",
"# CP + IS + FUN = TRUE\n",
"solver.Add(p + s + n + base * (c + i + u) + base * base * f == e +\n",
" base * u + base * base * r + base * base * base * t)\n",
"# [END constraints]\n",
"\n",
"# [START solve]\n",
"solution_count = 0\n",
"db = solver.Phase(letters, solver.INT_VAR_DEFAULT, solver.INT_VALUE_DEFAULT)\n",
"solver.NewSearch(db)\n",
"while solver.NextSolution():\n",
" print(letters)\n",
" # Is CP + IS + FUN = TRUE?\n",
" assert (base * c.Value() + p.Value() + base * i.Value() + s.Value() +\n",
" base * base * f.Value() + base * u.Value() +\n",
" n.Value() == base * base * base * t.Value() +\n",
" base * base * r.Value() + base * u.Value() + e.Value())\n",
" solution_count += 1\n",
"solver.EndSearch()\n",
"print(f'Number of solutions found: {solution_count}')\n",
"# [END solve]\n",
"\n"
]
}
],
"metadata": {},
"nbformat": 4,
"nbformat_minor": 5
}

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "2ddb2b8f",
"id": "c0fc7eab",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "828807d1",
"id": "93dc1a36",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "aedcf2ce",
"id": "1bf43435",
"metadata": {},
"source": [
"# cvrp"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "57b388d2",
"id": "71913d19",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "82fec21b",
"id": "3cbec4e4",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "75ee15f8",
"id": "bb2af320",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "73095a07",
"id": "d03d2f7d",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "52a54c92",
"id": "6bdc14ed",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "afc8343a",
"id": "21cd67e6",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "6e567e2a",
"id": "aec1818d",
"metadata": {},
"source": [
"# cvrp_reload"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "6c54ccf6",
"id": "e45c944c",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "fd058dad",
"id": "f603de3b",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "7819d1c6",
"id": "5fb17736",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "d60ff22f",
"id": "5caf8cc1",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "e396b229",
"id": "f5b5c92c",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "7dcb9d41",
"id": "fa0e0054",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "91eddf43",
"id": "e4d6908c",
"metadata": {},
"source": [
"# cvrptw"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "6c0132d7",
"id": "25118889",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "ff996c61",
"id": "b9083d2e",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "d42b4781",
"id": "8f9e7452",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "501da3fe",
"id": "36bd089b",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "349258a4",
"id": "e5262af7",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "ac5fbcff",
"id": "a014d63c",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "be884605",
"id": "38f0f09d",
"metadata": {},
"source": [
"# cvrptw_break"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "4e6a756c",
"id": "f549e41c",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "77f26b01",
"id": "f2dcbea4",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "80f875e9",
"id": "1bab269a",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "6e5438d6",
"id": "6b90c55f",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -0,0 +1,160 @@
{
"cells": [
{
"cell_type": "markdown",
"id": "5a53fc20",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
]
},
{
"cell_type": "markdown",
"id": "12af48ea",
"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": "6e54fac6",
"metadata": {},
"source": [
"# nqueens_cp"
]
},
{
"cell_type": "markdown",
"id": "fefb5045",
"metadata": {},
"source": [
"<table align=\"left\">\n",
"<td>\n",
"<a href=\"https://colab.research.google.com/github/google/or-tools/blob/master/examples/notebook/constraint_solver/nqueens_cp.ipynb\"><img src=\"https://raw.githubusercontent.com/google/or-tools/master/tools/colab_32px.png\"/>Run in Google Colab</a>\n",
"</td>\n",
"<td>\n",
"<a href=\"https://github.com/google/or-tools/blob/master/ortools/constraint_solver/samples/nqueens_cp.py\"><img src=\"https://raw.githubusercontent.com/google/or-tools/master/tools/github_32px.png\"/>View source on GitHub</a>\n",
"</td>\n",
"</table>"
]
},
{
"cell_type": "markdown",
"id": "d8917a59",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "3234ebe7",
"metadata": {},
"outputs": [],
"source": [
"!pip install ortools"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "6e21c8e8",
"metadata": {},
"outputs": [],
"source": [
"#!/usr/bin/env python3\n",
"# Copyright 2010-2021 Google LLC\n",
"# 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",
"# [START program]\n",
"\"\"\"OR-Tools solution to the N-queens problem.\"\"\"\n",
"# [START import]\n",
"import sys\n",
"from ortools.constraint_solver import pywrapcp\n",
"# [END import]\n",
"\n",
"\n",
"# Creates the solver.\n",
"# [START solver]\n",
"solver = pywrapcp.Solver('n-queens')\n",
"# [END solver]\n",
"\n",
"# Creates the variables.\n",
"# [START variables]\n",
"# The array index is the column, and the value is the row.\n",
"queens = [\n",
" solver.IntVar(0, board_size - 1, f'x{i}') for i in range(board_size)\n",
"]\n",
"# [END variables]\n",
"\n",
"# Creates the constraints.\n",
"# [START constraints]\n",
"# All rows must be different.\n",
"solver.Add(solver.AllDifferent(queens))\n",
"\n",
"# No two queens can be on the same diagonal.\n",
"solver.Add(solver.AllDifferent([queens[i] + i for i in range(board_size)]))\n",
"solver.Add(solver.AllDifferent([queens[i] - i for i in range(board_size)]))\n",
"# [END constraints]\n",
"\n",
"# [START db]\n",
"db = solver.Phase(queens, solver.CHOOSE_FIRST_UNBOUND,\n",
" solver.ASSIGN_MIN_VALUE)\n",
"# [END db]\n",
"\n",
"# [START solve]\n",
"# Iterates through the solutions, displaying each.\n",
"num_solutions = 0\n",
"solver.NewSearch(db)\n",
"while solver.NextSolution():\n",
" # Displays the solution just computed.\n",
" for i in range(board_size):\n",
" for j in range(board_size):\n",
" if queens[j].Value() == i:\n",
" # There is a queen in column j, row i.\n",
" print('Q', end=' ')\n",
" else:\n",
" print('_', end=' ')\n",
" print()\n",
" print()\n",
" num_solutions += 1\n",
"solver.EndSearch()\n",
"# [END solve]\n",
"\n",
"# Statistics.\n",
"# [START statistics]\n",
"print('\\nStatistics')\n",
"print(f' failures: {solver.Failures()}')\n",
"print(f' branches: {solver.Branches()}')\n",
"print(f' wall time: {solver.WallTime()} ms')\n",
"print(f' Solutions found: {num_solutions}')\n",
"# [END statistics]\n",
"\n"
]
}
],
"metadata": {},
"nbformat": 4,
"nbformat_minor": 5
}

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "60bab3a5",
"id": "9c9c5044",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "c3c2ba2a",
"id": "ac84f530",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "7733fbcb",
"id": "9c622751",
"metadata": {},
"source": [
"# simple_cp_program"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "f8f02597",
"id": "6eb6c842",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "317821c6",
"id": "b02b4077",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "a403bd30",
"id": "05dea269",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "ee632a49",
"id": "4db5d945",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "73c3dee6",
"id": "58e307f8",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "4b5b29f7",
"id": "e54fadbd",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "4a9146a6",
"id": "6231fc22",
"metadata": {},
"source": [
"# simple_routing_program"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "4737a1e8",
"id": "53c76b90",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "016a31c1",
"id": "14872edb",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "23dc3298",
"id": "5ce7a297",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "383c75e8",
"id": "d34ffa99",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "e28b12af",
"id": "f782f7a8",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "f76be8dd",
"id": "3e459c35",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "a23bc189",
"id": "f4015114",
"metadata": {},
"source": [
"# tsp"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "20f2235b",
"id": "35d8d74b",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "3a63c877",
"id": "db999acc",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "cc7e8648",
"id": "efbc38d1",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "2a014ff0",
"id": "dcf09c80",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "e9022ee8",
"id": "5f004b6d",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "675e834c",
"id": "7eae81e8",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "048496bf",
"id": "d61c03b3",
"metadata": {},
"source": [
"# tsp_circuit_board"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "3266177f",
"id": "1370040d",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "3663296d",
"id": "3e465dfb",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "55e2e092",
"id": "d956a9db",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "87718beb",
"id": "14d7f567",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "7915156f",
"id": "960f04a5",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "4b1c3491",
"id": "00f05fa3",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "7780313f",
"id": "f4885655",
"metadata": {},
"source": [
"# tsp_cities"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "dd0c3e8c",
"id": "ce9b1c06",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "18225271",
"id": "45ec7433",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "72ab54d5",
"id": "38cac232",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "9cf37cd1",
"id": "6f9b30c9",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "5fd8985c",
"id": "fff9e482",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "fd2627cb",
"id": "3d7a8f1a",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "cea08948",
"id": "7fda6766",
"metadata": {},
"source": [
"# tsp_distance_matrix"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "3810da41",
"id": "5dc26d28",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "0ce400dd",
"id": "261e6273",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "83fb94e9",
"id": "5518b867",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "9ca60546",
"id": "6edd0004",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "160c8465",
"id": "858141c9",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "a7083336",
"id": "35109b03",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "7a784584",
"id": "4cabc570",
"metadata": {},
"source": [
"# vrp"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "4747d365",
"id": "639b1087",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "83d26fb6",
"id": "0798875d",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "42697668",
"id": "9ec9cf57",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "33746109",
"id": "f0a3c412",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "2d1e25a5",
"id": "70942b21",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "a0b209df",
"id": "5b399e75",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "d499b5e6",
"id": "85c7e2d1",
"metadata": {},
"source": [
"# vrp_breaks"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "4c1c33e1",
"id": "d70ca4a0",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "9c7d9039",
"id": "65338b19",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "699d7c47",
"id": "87304230",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "82611f8b",
"id": "dcd925af",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "54b4252e",
"id": "3fe21dd6",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "105a373d",
"id": "5db64da1",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "f56f1fc9",
"id": "021a49b8",
"metadata": {},
"source": [
"# vrp_breaks_from_start"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "e4eb3751",
"id": "c31c4de6",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "00ecde8c",
"id": "745cf35d",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "91ba7503",
"id": "222da325",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "54c782c8",
"id": "a489a369",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "fa7b776e",
"id": "9d984c7b",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "d77c537b",
"id": "386a7527",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "dea81b72",
"id": "f16ef124",
"metadata": {},
"source": [
"# vrp_capacity"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "bcc06fd1",
"id": "c363294d",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "a1db4ae8",
"id": "03a75c14",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "37cdec8f",
"id": "39cb7e0e",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "c6b6718f",
"id": "ff52f913",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "94a6b19c",
"id": "af355f00",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "e1556f05",
"id": "0c16feca",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "8665a89c",
"id": "e498df02",
"metadata": {},
"source": [
"# vrp_drop_nodes"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "a8277f3a",
"id": "dab2c048",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "9cbfd53d",
"id": "7fbe2322",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "595330d1",
"id": "c61a39ef",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "04a2c58b",
"id": "583a14bf",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "9b04fb79",
"id": "13207860",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "ad59fa0b",
"id": "d88d4e4c",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "9eaf4d47",
"id": "0c2302e8",
"metadata": {},
"source": [
"# vrp_global_span"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "9a910b57",
"id": "01094fb7",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "79507892",
"id": "7c30bae9",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "68edc639",
"id": "872053d4",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "983f32c3",
"id": "63edd5e4",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "4e0a51c8",
"id": "6c9ebc0c",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "b0d4de73",
"id": "3f403f7d",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "51ccac64",
"id": "163f6ee3",
"metadata": {},
"source": [
"# vrp_initial_routes"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "093de4be",
"id": "4f1be7d6",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "d3b2fd75",
"id": "2775a83c",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "e3d30c12",
"id": "0b5d68e3",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "606b007b",
"id": "55384ca8",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "8a3b8363",
"id": "cfa33f9f",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "952d3c86",
"id": "6b4d93f6",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "a988f7d4",
"id": "4cc7bb6c",
"metadata": {},
"source": [
"# vrp_node_max"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "3ff285c7",
"id": "ae0c9593",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "f2707823",
"id": "17cb0425",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "b3431969",
"id": "035b1545",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "28672527",
"id": "d05af53d",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "4d11d16d",
"id": "5aabb68e",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "c3acdb2e",
"id": "22129495",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "207daa24",
"id": "b0817d6a",
"metadata": {},
"source": [
"# vrp_nodes_indices"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "ececcc1e",
"id": "6b92007c",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "9ac85d96",
"id": "fd276f61",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "064e8336",
"id": "8a99a81c",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "f4a56f3b",
"id": "4fad2e1f",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "800f9381",
"id": "7078f172",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "4acf247b",
"id": "ea34ed8a",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "05edae14",
"id": "c85b1310",
"metadata": {},
"source": [
"# vrp_pickup_delivery"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "490b62db",
"id": "38cb12dc",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "c1db5c19",
"id": "90a068e7",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "30fac23a",
"id": "7039f94b",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "b1a35c63",
"id": "65262a14",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "3c96db7f",
"id": "43a3bee5",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "d5c54c96",
"id": "5c969ad2",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "ba4ccfb9",
"id": "9d2058c6",
"metadata": {},
"source": [
"# vrp_pickup_delivery_fifo"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "a9f054e0",
"id": "4161f1f2",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "22779095",
"id": "4b514688",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "245c63d4",
"id": "f9e5e2c8",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "949697bf",
"id": "901cddbb",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "042cbbde",
"id": "9f575907",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "abb1485a",
"id": "01d1a799",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "a620ba16",
"id": "b7e128ac",
"metadata": {},
"source": [
"# vrp_pickup_delivery_lifo"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "cb773fe8",
"id": "991c48f2",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "e5abbbf9",
"id": "c279c2c3",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "1a5ba3a7",
"id": "60bbe751",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "1ebaf11b",
"id": "ff950536",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "5e175a7e",
"id": "8dfc0599",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "c6ad5a6c",
"id": "0ae5764e",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "2f8cc686",
"id": "58fd487f",
"metadata": {},
"source": [
"# vrp_resources"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "c3ab9318",
"id": "6558a101",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "68c3d4e2",
"id": "1c662a17",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "7ee1aa92",
"id": "eae65180",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "7772adeb",
"id": "a107beaa",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "1a398577",
"id": "e5410436",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "592a2fb9",
"id": "5daa48fa",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "d6d7c5ee",
"id": "8925cb6f",
"metadata": {},
"source": [
"# vrp_starts_ends"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "75b3f4d3",
"id": "f5ee552a",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "78936b8c",
"id": "797433a5",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "2e980174",
"id": "993c8f46",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "177ccc2e",
"id": "17db0d31",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "7e935513",
"id": "13c90a9b",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "f9fef11c",
"id": "2307a605",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "e76f015b",
"id": "2b2d919c",
"metadata": {},
"source": [
"# vrp_time_windows"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "86d26ee7",
"id": "c97934a6",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "29394140",
"id": "9272b068",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "fc1f8c37",
"id": "3dc66be2",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "a0eabda1",
"id": "ba521d40",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "7c75ff11",
"id": "5530eb4e",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "e4f7ecec",
"id": "6d5e29bd",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "e5613b23",
"id": "8b089b57",
"metadata": {},
"source": [
"# vrp_time_windows_per_vehicles"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "d3fe4e7a",
"id": "2d0d3bea",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "d27171a2",
"id": "0258f0b8",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "31fac765",
"id": "c9e2fcad",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "39c0c306",
"id": "c2a65702",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "7f720c5d",
"id": "d380e3c1",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "d2167d2a",
"id": "39aec5c4",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "d206991f",
"id": "30b5e2e7",
"metadata": {},
"source": [
"# vrp_tokens"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "9e965377",
"id": "b7373fb6",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "cf333906",
"id": "f8ba73c3",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "c56051ec",
"id": "bf86aec2",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "920c9fa3",
"id": "ed938f25",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "2df5101e",
"id": "40385ce6",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "d1a8531e",
"id": "b51c4c75",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "59ed5785",
"id": "77aab820",
"metadata": {},
"source": [
"# vrp_with_time_limit"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "16a413bb",
"id": "3eb2030e",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "0ef04c28",
"id": "77ca7816",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "05d4c369",
"id": "0b933f44",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "f0935e1f",
"id": "71982444",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "617728f3",
"id": "2f062270",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "b380acd9",
"id": "9b7773cc",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "64c14a55",
"id": "56e72dbd",
"metadata": {},
"source": [
"# vrpgs"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "07241d8e",
"id": "eda75982",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "4c85bb3d",
"id": "2b1d0be0",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "1ee63fce",
"id": "204f4563",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "ed9d337a",
"id": "4b91ba5d",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "35153721",
"id": "1be33f0b",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "f333b46e",
"id": "bf7f9dc5",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "967931b3",
"id": "784bee98",
"metadata": {},
"source": [
"# vrptw_store_solution_data"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "70df7c8c",
"id": "4a8c21dd",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "69cef4fe",
"id": "36914f90",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "07f27144",
"id": "c7ed4373",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "668596b6",
"id": "8747822a",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "97eed262",
"id": "03ad806a",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "cf1fc5d4",
"id": "5c019d4d",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "2ded5340",
"id": "887b7e41",
"metadata": {},
"source": [
"# 3_jugs_mip"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "6ed78d20",
"id": "7ddea1aa",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "b5a5c592",
"id": "62e08fd9",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "529695c9",
"id": "b5e200c6",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "ff756402",
"id": "e25340c2",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "14cc1e1d",
"id": "d3313ddc",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "1666a0da",
"id": "3643345f",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "8094e18c",
"id": "26573d5d",
"metadata": {},
"source": [
"# 3_jugs_regular"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "fccfa8b8",
"id": "8f86eb9c",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "ccba13f7",
"id": "d2112763",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "0dc81953",
"id": "c95a76cc",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "13e7340f",
"id": "fc41c1ef",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "676c9a63",
"id": "e2f41ea1",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "11559da0",
"id": "cba355d7",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "215a3622",
"id": "efffee33",
"metadata": {},
"source": [
"# a_round_of_golf"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "8f99bab7",
"id": "98c4e991",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "7b49b205",
"id": "0917bdbe",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "06d61203",
"id": "ecacb034",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "003164cc",
"id": "09e18448",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "ab169959",
"id": "074feb5c",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "a9d0d134",
"id": "6b037e7b",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "6792ad30",
"id": "25aa7004",
"metadata": {},
"source": [
"# all_interval"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "6bcafd13",
"id": "779f401c",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "846b442e",
"id": "78a147c8",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "e14daee6",
"id": "2dc6f26f",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "29009d6f",
"id": "ed674953",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "b4dab548",
"id": "449aed0b",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "637039d7",
"id": "39b09721",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "078c5cce",
"id": "7be8ff1e",
"metadata": {},
"source": [
"# alldifferent_except_0"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "2581b374",
"id": "5d433517",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "03816df1",
"id": "e6c6eedd",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "2c317842",
"id": "40e88f11",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "45fd2103",
"id": "8a8cbd39",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "f976ef1a",
"id": "d4fe5368",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "bd0888ac",
"id": "dcb3a19a",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "4b21a464",
"id": "5a55d534",
"metadata": {},
"source": [
"# alphametic"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "91c7b2f6",
"id": "5b85f30a",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "e6d8a7fb",
"id": "cdaa1ccf",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "ea89c5e1",
"id": "557d6a61",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "0ae798d5",
"id": "b6e34c2b",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "fcc0b183",
"id": "cd97c789",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "ddff2a4e",
"id": "fe8edf1d",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "ca9c00e9",
"id": "2606cfb1",
"metadata": {},
"source": [
"# assignment"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "6e65d826",
"id": "825299b6",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "97cfe900",
"id": "234fd0ad",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "042182c7",
"id": "6857e383",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "2bbbd3b7",
"id": "8f46dd86",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "7276d0e0",
"id": "64f8b5e9",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "a1438d78",
"id": "2dbed8e4",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "32a4c734",
"id": "edd3e3ac",
"metadata": {},
"source": [
"# assignment6_mip"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "7909ac0a",
"id": "300f518e",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "7c5379eb",
"id": "82b1cd6d",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "0a9a4ef1",
"id": "cfca3c46",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "4cabf3bf",
"id": "be03aa46",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "ea1887a1",
"id": "772db279",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "0424e742",
"id": "9065af13",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "e893a5ba",
"id": "25f034b7",
"metadata": {},
"source": [
"# bacp"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "b572549c",
"id": "2e5c08ec",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "e74ce7aa",
"id": "68373660",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "21b877e7",
"id": "4a511654",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "5a45ba52",
"id": "ccf50fcc",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "a8e3f53f",
"id": "73b4c7ae",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "318cb4c0",
"id": "bc9cace2",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "df117001",
"id": "b2b789d7",
"metadata": {},
"source": [
"# blending"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "c983e32e",
"id": "4f0becf4",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "2ede1b32",
"id": "191c51b8",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "14b7c2d6",
"id": "9c832f8c",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "5bbfc855",
"id": "d7e0fdd9",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "e8c4a2f5",
"id": "f2ecf3a3",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "b7558330",
"id": "1f1cce80",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "ebba6d16",
"id": "490de144",
"metadata": {},
"source": [
"# broken_weights"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "736af0f3",
"id": "db7d4b32",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "d1a4b2e0",
"id": "76bc2d44",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "8b48fa01",
"id": "4a0a5a9f",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "95458198",
"id": "569af3f0",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "09db0710",
"id": "7cdab7d8",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "9c346678",
"id": "963d93ca",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "045bdfb4",
"id": "4e9a4969",
"metadata": {},
"source": [
"# bus_schedule"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "e4388fe6",
"id": "c6e3c9fb",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "19552900",
"id": "d6f4e0a5",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "aaa24cf5",
"id": "02390223",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "a2731eb5",
"id": "2d0517d6",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "7b812e60",
"id": "e2b720c6",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "8a8432d0",
"id": "70f8391e",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "f879b2a2",
"id": "7de8fd45",
"metadata": {},
"source": [
"# car"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "4a8a9f47",
"id": "67613fcb",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "6422f09d",
"id": "9b09f70a",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "d526f7a4",
"id": "c5d51486",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "3bd788b1",
"id": "fb830d38",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "db005efd",
"id": "ec83f34a",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "7b97e01e",
"id": "24aaced4",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "3581235a",
"id": "5d1f2f34",
"metadata": {},
"source": [
"# check_dependencies"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "95fd548b",
"id": "4ddf236b",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "0d02a671",
"id": "fce67e9e",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "fe165268",
"id": "1d506020",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "246d3fbe",
"id": "f913789c",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "a2c08450",
"id": "a12af62f",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "31ebbf08",
"id": "710abbc0",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "ecc627a3",
"id": "6c4eaf83",
"metadata": {},
"source": [
"# circuit"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "de949de3",
"id": "85e84df3",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "c1a139bd",
"id": "bb2f43c9",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "f83e9652",
"id": "ec0f081d",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "9c41e2ad",
"id": "72c95237",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "6d2d0196",
"id": "b574be92",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "cf2d618c",
"id": "264c1eb0",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "9173c337",
"id": "0969a35e",
"metadata": {},
"source": [
"# coins3"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "44646f93",
"id": "2a524ccf",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "8bbbdaec",
"id": "aadbe175",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "b4426b2a",
"id": "04c6abb0",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "34674611",
"id": "add0dddc",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "976d721f",
"id": "5e0b2a3f",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "65c2e210",
"id": "275dfa47",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "4df525bf",
"id": "ebdd9682",
"metadata": {},
"source": [
"# coins_grid"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "0b2bede3",
"id": "a7fec7f6",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "45695b30",
"id": "d801bce6",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "b8d6c572",
"id": "eb3c7dcb",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "efe2b870",
"id": "42c4b365",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "e6a2e957",
"id": "9f0d190d",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "07c2edde",
"id": "8056afb6",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "e9954b8b",
"id": "cd115dab",
"metadata": {},
"source": [
"# coins_grid_mip"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "bee1f63d",
"id": "557876ec",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "c9a3114e",
"id": "55eb2f4c",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "b3be60ee",
"id": "e8ea0fdd",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "9c993458",
"id": "f3f53f5f",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "675dfce3",
"id": "7a237d43",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "8e568b30",
"id": "d51be545",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "7d59f70b",
"id": "6782ef46",
"metadata": {},
"source": [
"# coloring_ip"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "7d4c70f8",
"id": "1e10740b",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "c70ebf04",
"id": "92d36738",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "b40313a0",
"id": "45c14d2d",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "f79a1179",
"id": "42279483",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "65005190",
"id": "4abd8011",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "747919d9",
"id": "a8d1a92c",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "bad6bffd",
"id": "72e4e5ba",
"metadata": {},
"source": [
"# combinatorial_auction2"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "59f5d453",
"id": "4ab933b9",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "6c03cfc4",
"id": "69dd0630",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "d4469db2",
"id": "aa9546d2",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "96078b1a",
"id": "65ed8e69",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "10d70c6d",
"id": "6842f40f",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "7ab31d72",
"id": "38c2d98e",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "b6d39d05",
"id": "d1d09a71",
"metadata": {},
"source": [
"# contiguity_regular"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "7d8c0273",
"id": "42ce4d7f",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "0080c8f3",
"id": "8c08905b",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "830f000b",
"id": "2bca1da2",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "1da5b895",
"id": "5664f2d7",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "2f9426c6",
"id": "651b72b0",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "c69fc2aa",
"id": "e2937bb4",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "1a51bc00",
"id": "59f2579a",
"metadata": {},
"source": [
"# costas_array"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "9a58f663",
"id": "7937e78d",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "77f4e09e",
"id": "8439836d",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "a153042b",
"id": "d35310c5",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "c5a97b15",
"id": "64ef00e1",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "9420fe6f",
"id": "7922493e",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "b95fee6b",
"id": "a857d619",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "7a6a0d30",
"id": "4aa2c8b8",
"metadata": {},
"source": [
"# covering_opl"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "293efa5d",
"id": "74e63b61",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "de6be4be",
"id": "c4a21b47",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "cf13bbc7",
"id": "8e5bd5bb",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "da634beb",
"id": "7c2fc260",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "d62cd308",
"id": "a2cacb10",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "ebbb12ef",
"id": "cb847f67",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "ced2d864",
"id": "9ff7fd8c",
"metadata": {},
"source": [
"# crew"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "327b33af",
"id": "af45dbd3",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "6e20c1b7",
"id": "877d0e78",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "2896021c",
"id": "149636ec",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "bd4255bd",
"id": "e7fe3cf9",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "7eb90e6a",
"id": "ea787fbc",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "4418cf38",
"id": "9c63726b",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "2bbdcbe6",
"id": "2be4669d",
"metadata": {},
"source": [
"# crossword2"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "97ea3404",
"id": "ba70cbcd",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "f8073279",
"id": "6dfb2ded",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "3fc19b08",
"id": "08dfe7c5",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "1222d231",
"id": "9ee4ba97",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "4d84ce57",
"id": "7ed094c7",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "c62821a6",
"id": "2f676b12",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "c1d0bf82",
"id": "a86c70d4",
"metadata": {},
"source": [
"# crypta"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "97851841",
"id": "aa1a1904",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "cf2d6f03",
"id": "8a356ff1",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "5e9f184e",
"id": "d2bd64ae",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "3d897f2d",
"id": "b9caa0fc",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "be5b2e5e",
"id": "3a984f3f",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "4e16414e",
"id": "4133e902",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "360f1b28",
"id": "d67eaa7f",
"metadata": {},
"source": [
"# crypto"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "52a43697",
"id": "dde2639e",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "3df99053",
"id": "158c2f8c",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "4b3f5e31",
"id": "57b2fe60",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "e74968e3",
"id": "15d61912",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "32d8094b",
"id": "0b772614",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "1997b1b3",
"id": "6012ad2b",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "49394352",
"id": "0184c2d0",
"metadata": {},
"source": [
"# curious_set_of_integers"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "d04ea86e",
"id": "3725ddba",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "f0188c58",
"id": "289c371c",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "d75abe64",
"id": "ad78cab3",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "011e088f",
"id": "c0c417c2",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "18db5f46",
"id": "a00e0953",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "6041e71d",
"id": "dadc5dbb",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "25dcefe7",
"id": "6b4617a8",
"metadata": {},
"source": [
"# debruijn_binary"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "8e364e1c",
"id": "55a463c6",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "d76ce221",
"id": "db386045",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "42d37a64",
"id": "c5d0eb38",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "88b72517",
"id": "cea54722",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "c849dedb",
"id": "3bf5b348",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "52994c75",
"id": "e11349e5",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "03a20d1b",
"id": "74967537",
"metadata": {},
"source": [
"# diet1"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "81d3f8e5",
"id": "b808c874",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "9db21e4a",
"id": "ad5d7787",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "bab0c5ec",
"id": "8cf1ddb3",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "dbc65d50",
"id": "4dc15a72",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "e0e35fd1",
"id": "53cacd47",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "99ba32e0",
"id": "8ece5ce4",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "b199d1cb",
"id": "80e0049a",
"metadata": {},
"source": [
"# diet1_b"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "f0a3c552",
"id": "eb2d5651",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "42199357",
"id": "32d66599",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "c5edf5a0",
"id": "a1e521f4",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "7a23d998",
"id": "8c5958ec",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "4717d6e9",
"id": "d7563054",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "23f7d7d7",
"id": "d258616d",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "59cb9d2c",
"id": "2b71c34d",
"metadata": {},
"source": [
"# diet1_mip"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "da423c0a",
"id": "25be43a1",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "862e7018",
"id": "2598e80e",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "0649b075",
"id": "17bcd4a9",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "61210e2d",
"id": "fcbb1310",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "91bd9975",
"id": "652c825d",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "68169502",
"id": "08fab2d8",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "b67fdd53",
"id": "ac1b4df5",
"metadata": {},
"source": [
"# discrete_tomography"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "a33afd37",
"id": "b9e3a1fd",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "75e3adec",
"id": "aacd861c",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "6e85bc8d",
"id": "ddda2e54",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "7aeb8711",
"id": "bec97aa6",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "f59b2c73",
"id": "b3d5dcea",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "4ee96540",
"id": "12425d6e",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "afac922f",
"id": "8a6dfd4e",
"metadata": {},
"source": [
"# divisible_by_9_through_1"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "fa97270b",
"id": "61cc17c5",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "d8876625",
"id": "24b251d4",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "8763875c",
"id": "b6fff564",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "87b61a1f",
"id": "d3c45136",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "a27e7fe1",
"id": "9bfa3936",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "67c433c1",
"id": "918d40c7",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "2c14cfb3",
"id": "f294265a",
"metadata": {},
"source": [
"# dudeney"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "daf568cc",
"id": "7d96cb12",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "d8985d76",
"id": "a3bb2154",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "2288426d",
"id": "15042843",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "b10f3e8b",
"id": "476586a2",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "074fd36e",
"id": "f0a1340e",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "c08d86e2",
"id": "fd3b79f2",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "d08031bb",
"id": "2358575d",
"metadata": {},
"source": [
"# einav_puzzle"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "624d1e2d",
"id": "c2e8e6a8",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "b83b3754",
"id": "484683e3",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "b89b0a12",
"id": "583db086",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "a5f32c92",
"id": "ac004ad4",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "95ca5792",
"id": "10a4030c",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "cf711f5c",
"id": "c8063be6",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "332dcf1c",
"id": "d944892d",
"metadata": {},
"source": [
"# einav_puzzle2"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "d8aaf663",
"id": "9aea505a",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "40778583",
"id": "346465b2",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "c3b80f4a",
"id": "16cfcb2d",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "7c59b1c5",
"id": "2542b5d4",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "bc143809",
"id": "86707ee7",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "6f09d024",
"id": "87e2c9e8",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "5e20be99",
"id": "ee35549b",
"metadata": {},
"source": [
"# eq10"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "f503b3ee",
"id": "d10345c7",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "6a8ad745",
"id": "5a9e1e02",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "47d910ef",
"id": "1c79aed1",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "16fb1551",
"id": "0a2952fc",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "3b7e09b0",
"id": "2327aa72",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "28555152",
"id": "1b05cfc0",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "03803144",
"id": "e2da929c",
"metadata": {},
"source": [
"# eq20"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "ff4bcafb",
"id": "09ee0927",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "b60a9356",
"id": "2519e391",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "331fab4c",
"id": "b048e800",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "4aead1b3",
"id": "b05bac1b",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "13c415b5",
"id": "83926e0e",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "2672a50f",
"id": "c41795f1",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "0f2664dd",
"id": "34e921be",
"metadata": {},
"source": [
"# fill_a_pix"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "409db0cf",
"id": "12dd2a2c",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "0331dab4",
"id": "258ad8dd",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "38950ca2",
"id": "0d89e4e2",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "7fecab66",
"id": "3791556a",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "e8a2dbf1",
"id": "3d491e56",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "c7d4e154",
"id": "07d9d4c3",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "12c63c8d",
"id": "aa628cd8",
"metadata": {},
"source": [
"# furniture_moving"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "1d40716d",
"id": "717eb16f",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "fab4aefe",
"id": "55a33d3c",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "1d7d0112",
"id": "551f4a6a",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "a0127800",
"id": "9773e70e",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "cc66a136",
"id": "08b45aef",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "672a796f",
"id": "bb78b08d",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "f6d4c7db",
"id": "ff962db7",
"metadata": {},
"source": [
"# futoshiki"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "18086334",
"id": "e9ba40a1",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "8b47993c",
"id": "220f8e7f",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "744ff51b",
"id": "c8dd47f0",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "c5e2558b",
"id": "ec171aba",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "894909c1",
"id": "22f6f334",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "c82063fb",
"id": "1ad04e8c",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "5237121e",
"id": "ec87b472",
"metadata": {},
"source": [
"# game_theory_taha"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "ceff80b8",
"id": "d56b67b6",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "ae6c5706",
"id": "1b1b5b41",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "b6d3ce06",
"id": "d9e929fc",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "8d908258",
"id": "25d58a8e",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "977151f9",
"id": "7a67890d",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "e823c584",
"id": "a485c1a4",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "832d4aef",
"id": "724b5b36",
"metadata": {},
"source": [
"# grocery"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "01c6c03b",
"id": "f78a601a",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "05544fb1",
"id": "db0b8e30",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "fc2bb415",
"id": "66006624",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "3c4e42ca",
"id": "8e5ba7d5",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "5addc40c",
"id": "67eb5810",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "817e4096",
"id": "ac201a0e",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "74c4db89",
"id": "1d4d6f90",
"metadata": {},
"source": [
"# hidato"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "e59aa98c",
"id": "cc4cae50",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "dadbf026",
"id": "74da760a",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "be063cf9",
"id": "56dae106",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "e81d8862",
"id": "6538272d",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "a8bb2a1e",
"id": "0226f4b4",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "69673cae",
"id": "e1a17902",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "4ba24ccb",
"id": "c58af21f",
"metadata": {},
"source": [
"# just_forgotten"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "08027b3b",
"id": "f96914e7",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "ff96a22a",
"id": "678368f5",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "3678e12d",
"id": "52b3258b",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "6a6d332a",
"id": "063bbef1",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "84fdfc40",
"id": "b2665fe3",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "a266942e",
"id": "c46080d5",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "53b0115a",
"id": "b2e268cb",
"metadata": {},
"source": [
"# kakuro"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "63d638d0",
"id": "3850ad8a",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "5d645435",
"id": "f7fc84a1",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "146d92f6",
"id": "80da00c7",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "14033a6c",
"id": "2aece645",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "973779b7",
"id": "615ad358",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "36fe4693",
"id": "cd752925",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "ab2b09f2",
"id": "6f11727e",
"metadata": {},
"source": [
"# kenken2"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "33472023",
"id": "ffa0a17a",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "3aad6a62",
"id": "be2f64d2",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "1ee59c44",
"id": "347f6339",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "ab2774e0",
"id": "b8a8cff0",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "98705fc8",
"id": "b391e22a",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "2ee9bce3",
"id": "124189f4",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "5e942023",
"id": "07fd5fb1",
"metadata": {},
"source": [
"# killer_sudoku"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "7aab71a5",
"id": "aeceb084",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "c18b3ef4",
"id": "a1bc7acb",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "469d4002",
"id": "8552857e",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "b1ad2623",
"id": "ab03fe52",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "8ca02cb6",
"id": "c7cc163b",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "9540d5d2",
"id": "fc0fbda0",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "c2500cb3",
"id": "5e7303e5",
"metadata": {},
"source": [
"# knapsack_cp"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "a0e41498",
"id": "20ac1cf6",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "09c90ba6",
"id": "ece02144",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "071197fb",
"id": "d6e41de0",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "100ba064",
"id": "b74a1e01",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "5b6a4f99",
"id": "4043c5c5",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "fae9e560",
"id": "04424b4c",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "7184474c",
"id": "ad7191a8",
"metadata": {},
"source": [
"# knapsack_mip"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "fbd7abd5",
"id": "2a745482",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "b75d7e99",
"id": "396d4296",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "cbe9a468",
"id": "c3151df9",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "abc9a30f",
"id": "a75e3c7e",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "36cda83d",
"id": "72b2a213",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "2eade386",
"id": "e7aa1892",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "eb74ef61",
"id": "a5671350",
"metadata": {},
"source": [
"# labeled_dice"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "3390d00c",
"id": "282f7b99",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "a9b23a3b",
"id": "2eeee5f2",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "05999991",
"id": "422e876b",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "3cba5bff",
"id": "b04e2074",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "dcd1586e",
"id": "2129a4e7",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "12efbb56",
"id": "257d3d54",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "660d02aa",
"id": "77f7e3ac",
"metadata": {},
"source": [
"# langford"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "c6980ede",
"id": "5f3b2c6f",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "23f499bf",
"id": "ed905cbd",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "a47b10cf",
"id": "cc3d3521",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "3f32d6d0",
"id": "f7732fdd",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "6b6609e3",
"id": "22121587",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "8219e20f",
"id": "e074d724",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "ae17af01",
"id": "5d748895",
"metadata": {},
"source": [
"# least_diff"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "a6c5a9cc",
"id": "cc2ebbb8",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "e1d11caa",
"id": "dbb27c8d",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "06546ca4",
"id": "a80601f2",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "35d29f76",
"id": "5381e602",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "32c1dc73",
"id": "cbfe89fb",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "eb9500c5",
"id": "a9ccbd02",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "7c7dc35b",
"id": "73643615",
"metadata": {},
"source": [
"# least_square"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "03e3a466",
"id": "b4b620bb",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "3a17b71b",
"id": "b3605be8",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "97a5d1ad",
"id": "f3903ae3",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "2cd66437",
"id": "c929554d",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "b318272d",
"id": "c134025c",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "c2030800",
"id": "6d4a8579",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "673946b2",
"id": "3dd81f0b",
"metadata": {},
"source": [
"# lectures"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "b563f7b0",
"id": "dc583b5b",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "574275a1",
"id": "02b8e39d",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "de18b9b6",
"id": "836f3ebd",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "94537a72",
"id": "992037a4",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "f188b4b2",
"id": "754ee77d",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "187e1a26",
"id": "460753d9",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "9e55bb71",
"id": "6890bdc1",
"metadata": {},
"source": [
"# magic_sequence_sat"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "3b11dc1a",
"id": "4cbac971",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "2cc5dacf",
"id": "8aef22b9",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "fa1b9480",
"id": "18d5dc16",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "a037fec5",
"id": "f74f5227",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "655c2fd6",
"id": "968518a5",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "85b075de",
"id": "ebadbb7c",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "7af109dc",
"id": "0d19f1d7",
"metadata": {},
"source": [
"# magic_square"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "eabff40f",
"id": "106e8c62",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "6545ccca",
"id": "2bb8be85",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "b460a28e",
"id": "219a12c7",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "aea4471c",
"id": "d28c77b8",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "669e45d3",
"id": "1c8de8bb",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "670719c4",
"id": "b652a9e5",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "6b1f25aa",
"id": "5c8ecfd6",
"metadata": {},
"source": [
"# magic_square_and_cards"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "afffad00",
"id": "8da07af1",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "40f53ada",
"id": "5d59556e",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "10fc06d2",
"id": "d0119d64",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "c0dbd248",
"id": "96e950b2",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "1ace564a",
"id": "531c3664",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "ad0b17c4",
"id": "054d0baf",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "fde8a136",
"id": "5fda8113",
"metadata": {},
"source": [
"# magic_square_mip"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "626db0aa",
"id": "ab6c6bd4",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "0c76b2bb",
"id": "c84f8c3b",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "3fce2c8d",
"id": "8c2abfd0",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "2969909e",
"id": "32ed943a",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "0cd8bc27",
"id": "35ac0335",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "7329ea0f",
"id": "01a3cf35",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "efbaa772",
"id": "8eb29411",
"metadata": {},
"source": [
"# map"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "6c9840d7",
"id": "d3ad2337",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "cf2534e6",
"id": "bf2c5a57",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "64d4fb9c",
"id": "fd4a0863",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "47160267",
"id": "99e65c3f",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "6dca0a47",
"id": "89808d19",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "8fc936fc",
"id": "5101c359",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "d87afc51",
"id": "61673e64",
"metadata": {},
"source": [
"# marathon2"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "4bfa0597",
"id": "e18ffc12",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "9ee29a0e",
"id": "b7873495",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "19ce8f1d",
"id": "17ee80e7",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "903ab734",
"id": "b5324c64",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "63b922db",
"id": "1f969d4e",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "8e2d4817",
"id": "88cbc916",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "faf25b02",
"id": "251a0d93",
"metadata": {},
"source": [
"# max_flow_taha"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "df7ca055",
"id": "8a1165f4",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "c8026a2d",
"id": "a8f6b788",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "b5a9f16c",
"id": "56ac3444",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "dc66f803",
"id": "3e5f5585",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "773f328f",
"id": "40f3ec1f",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "1cb11c70",
"id": "816310b3",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "9a0f60e0",
"id": "e88ace6f",
"metadata": {},
"source": [
"# max_flow_winston1"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "4f6ca1f1",
"id": "d9e9db7f",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "a102a8ca",
"id": "4e236992",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "2a52fcf6",
"id": "119aba3d",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "4fcb950c",
"id": "8d0bfc1f",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "2ca1ca5e",
"id": "7fd45eb0",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "7f4a525c",
"id": "7d2b864f",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "de708f64",
"id": "0c5d772f",
"metadata": {},
"source": [
"# minesweeper"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "8f59977b",
"id": "4fe1cd30",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "2c044568",
"id": "b96f8c11",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "c4dd3c85",
"id": "a04f11c0",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "0b8ccbaf",
"id": "b0ddfd35",
"metadata": {},
"outputs": [],
"source": [

View File

@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "a88b2c17",
"id": "53e9e9c8",
"metadata": {},
"source": [
"##### Copyright 2021 Google LLC."
@@ -10,7 +10,7 @@
},
{
"cell_type": "markdown",
"id": "d687e50b",
"id": "c83c5e89",
"metadata": {},
"source": [
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
@@ -28,7 +28,7 @@
},
{
"cell_type": "markdown",
"id": "457cc492",
"id": "29d81096",
"metadata": {},
"source": [
"# mr_smith"
@@ -36,7 +36,7 @@
},
{
"cell_type": "markdown",
"id": "1921c67d",
"id": "d5a1b940",
"metadata": {},
"source": [
"<table align=\"left\">\n",
@@ -51,7 +51,7 @@
},
{
"cell_type": "markdown",
"id": "b87caf3f",
"id": "77b2f83a",
"metadata": {},
"source": [
"First, you must install [ortools](https://pypi.org/project/ortools/) package in this colab."
@@ -60,7 +60,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "9a1f41a6",
"id": "7a177887",
"metadata": {},
"outputs": [],
"source": [
@@ -70,7 +70,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "948a2fff",
"id": "683868a8",
"metadata": {},
"outputs": [],
"source": [

Some files were not shown because too many files have changed in this diff Show More