Skip to content

Commit

Permalink
2.7.112
Browse files Browse the repository at this point in the history
  • Loading branch information
vlkong committed Jul 10, 2018
1 parent 74a3ab7 commit 0fc9cf0
Show file tree
Hide file tree
Showing 6 changed files with 1,416 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ This library is composed of 2 modules:
* IBM® Decision Optimization CPLEX Optimizer Modeling for Python - with namespace docplex.mp
* IBM® Decision Optimization CP Optimizer Modeling for Python - with namespace docplex.cp

Solving with CPLEX locally requires that IBM® ILOG CPLEX Optimization Studio V12.6.3 or V12.7.0
Solving with CPLEX locally requires that IBM® ILOG CPLEX Optimization Studio V12.8.0
is installed on your machine.

Solving with the IBM Decision Optimization on Cloud service requires that you
Expand Down
4 changes: 2 additions & 2 deletions examples/mp/jupyter/nurses_scheduling.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -821,7 +821,7 @@
" relaxer = Relaxer(prioritizer='match', verbose=True)\n",
" # self.enable_trace()\n",
" #self.parameters.mip.tolerances.mipgap = 0.03 # 3%\n",
" relaxed_sol = relaxer.relax(mdl)\n",
" relaxed_sol = relaxer.relax(mdl, url=url, key=key)\n",
" relaxed_ok = relaxed_sol is not None\n",
" assert relaxed_ok, \"relaxation failed\"\n",
" relaxer.print_information()\n",
Expand Down Expand Up @@ -997,7 +997,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython2",
"version": "2.7.11"
"version": "2.7.13"
}
},
"nbformat": 4,
Expand Down
Loading

0 comments on commit 0fc9cf0

Please sign in to comment.