Files
ortools-clone/examples/notebook/contrib/eq10.ipynb
Corentin Le Molgat 27121a1068 Update examples/notebook
generated using ./tools/gen_all_notebook.sh
2020-03-04 14:34:33 +01:00

117 lines
4.0 KiB
Plaintext

{
"cells": [
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"# Copyright 2010 Hakan Kjellerstrand hakank@gmail.com\n",
"#\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",
"\"\"\"\n",
"\n",
" Eq 10 in Google CP Solver.\n",
"\n",
" Standard benchmark problem.\n",
"\n",
" Compare with the following models:\n",
" * MiniZinc: http://hakank.org/minizinc/eq10.mzn\n",
" * ECLiPSe: http://hakank.org/eclipse/eq10.ecl\n",
" * SICStus: http://hakank.org/sicstus/eq10.pl\n",
"\n",
" This model was created by Hakan Kjellerstrand (hakank@gmail.com)\n",
" Also see my other Google CP Solver models:\n",
" http://www.hakank.org/google_or_tools/\n",
"\"\"\"\n",
"from __future__ import print_function\n",
"from ortools.constraint_solver import pywrapcp\n",
"\n",
"\n",
"\n",
"# Create the solver.\n",
"solver = pywrapcp.Solver(\"Eq 10\")\n",
"\n",
"#\n",
"# data\n",
"#\n",
"n = 7\n",
"\n",
"#\n",
"# variables\n",
"#\n",
"X = [solver.IntVar(0, 10, \"X(%i)\" % i) for i in range(n)]\n",
"X1, X2, X3, X4, X5, X6, X7 = X\n",
"\n",
"#\n",
"# constraints\n",
"#\n",
"solver.Add(0 + 98527 * X1 + 34588 * X2 + 5872 * X3 + 59422 * X5 +\n",
" 65159 * X7 == 1547604 + 30704 * X4 + 29649 * X6)\n",
"\n",
"solver.Add(0 + 98957 * X2 + 83634 * X3 + 69966 * X4 + 62038 * X5 +\n",
" 37164 * X6 + 85413 * X7 == 1823553 + 93989 * X1)\n",
"\n",
"solver.Add(900032 + 10949 * X1 + 77761 * X2 + 67052 * X5 == 0 + 80197 * X3 +\n",
" 61944 * X4 + 92964 * X6 + 44550 * X7)\n",
"\n",
"solver.Add(0 + 73947 * X1 + 84391 * X3 + 81310 * X5 == 1164380 + 96253 * X2 +\n",
" 44247 * X4 + 70582 * X6 + 33054 * X7)\n",
"\n",
"solver.Add(0 + 13057 * X3 + 42253 * X4 + 77527 * X5 + 96552 * X7 == 1185471 +\n",
" 60152 * X1 + 21103 * X2 + 97932 * X6)\n",
"\n",
"solver.Add(1394152 + 66920 * X1 + 55679 * X4 == 0 + 64234 * X2 + 65337 * X3 +\n",
" 45581 * X5 + 67707 * X6 + 98038 * X7)\n",
"\n",
"solver.Add(0 + 68550 * X1 + 27886 * X2 + 31716 * X3 + 73597 * X4 +\n",
" 38835 * X7 == 279091 + 88963 * X5 + 76391 * X6)\n",
"\n",
"solver.Add(0 + 76132 * X2 + 71860 * X3 + 22770 * X4 + 68211 * X5 +\n",
" 78587 * X6 == 480923 + 48224 * X1 + 82817 * X7)\n",
"\n",
"solver.Add(519878 + 94198 * X2 + 87234 * X3 + 37498 * X4 == 0 + 71583 * X1 +\n",
" 25728 * X5 + 25495 * X6 + 70023 * X7)\n",
"\n",
"solver.Add(361921 + 78693 * X1 + 38592 * X5 + 38478 * X6 == 0 + 94129 * X2 +\n",
" 43188 * X3 + 82528 * X4 + 69025 * X7)\n",
"\n",
"#\n",
"# search and result\n",
"#\n",
"db = solver.Phase(X, solver.INT_VAR_SIMPLE, solver.INT_VALUE_SIMPLE)\n",
"\n",
"solver.NewSearch(db)\n",
"\n",
"num_solutions = 0\n",
"while solver.NextSolution():\n",
" num_solutions += 1\n",
" print(\"X:\", [X[i].Value() for i in range(n)])\n",
" print()\n",
"\n",
"solver.EndSearch()\n",
"\n",
"print()\n",
"print(\"num_solutions:\", num_solutions)\n",
"print(\"failures:\", solver.Failures())\n",
"print(\"branches:\", solver.Branches())\n",
"print(\"WallTime:\", solver.WallTime())\n",
"\n"
]
}
],
"metadata": {},
"nbformat": 4,
"nbformat_minor": 4
}