1
+
2
+
3
+ <!doctype html>
4
+
5
+ < html xmlns ="http://www.w3.org/1999/xhtml ">
6
+ < head >
7
+ < meta http-equiv ="X-UA-Compatible " content ="IE=Edge " />
8
+ < meta http-equiv ="Content-Type " content ="text/html; charset=iso-8859-1 " />
9
+ < title > README.md — IBM® Decision Optimization CPLEX® Modeling for Python (DOcplex) V2.16 documentation</ title >
10
+ < link rel ="stylesheet " href ="_static/bizstyle.css " type ="text/css " />
11
+ < link rel ="stylesheet " href ="_static/pygments.css " type ="text/css " />
12
+
13
+ < script type ="text/javascript " id ="documentation_options " data-url_root ="./ " src ="_static/documentation_options.js "> </ script >
14
+ < script type ="text/javascript " src ="_static/jquery.js "> </ script >
15
+ < script type ="text/javascript " src ="_static/underscore.js "> </ script >
16
+ < script type ="text/javascript " src ="_static/doctools.js "> </ script >
17
+ < script type ="text/javascript " src ="_static/language_data.js "> </ script >
18
+ < script type ="text/javascript " src ="_static/bizstyle.js "> </ script >
19
+ < link rel ="index " title ="Index " href ="genindex.html " />
20
+ < link rel ="search " title ="Search " href ="search.html " />
21
+ < meta name ="viewport " content ="width=device-width,initial-scale=1.0 ">
22
+ <!--[if lt IE 9]>
23
+ <script type="text/javascript" src="_static/css3-mediaqueries.js"></script>
24
+ <![endif]-->
25
+ </ head > < body >
26
+ < div class ="related " role ="navigation " aria-label ="related navigation ">
27
+ < h3 > Navigation</ h3 >
28
+ < ul >
29
+ < li class ="right " style ="margin-right: 10px ">
30
+ < a href ="genindex.html " title ="General Index "
31
+ accesskey ="I "> index</ a > </ li >
32
+ < li class ="nav-item nav-item-0 "> < a href ="index.html "> IBM® Decision Optimization CPLEX® Modeling for Python (DOcplex) V2.16 documentation</ a > »</ li >
33
+ </ ul >
34
+ </ div >
35
+ < div class ="sphinxsidebar " role ="navigation " aria-label ="main navigation ">
36
+ < div class ="sphinxsidebarwrapper ">
37
+ </ div >
38
+ </ div >
39
+
40
+ < div class ="document ">
41
+ < div class ="documentwrapper ">
42
+ < div class ="bodywrapper ">
43
+ < div class ="body " role ="main ">
44
+
45
+ < div class ="section " id ="readme-md ">
46
+ < h1 > README.md< a class ="headerlink " href ="#readme-md " title ="Permalink to this headline "> ¶</ a > </ h1 >
47
+ < div class ="highlight-text notranslate "> < table class ="highlighttable "> < tr > < td class ="linenos "> < div class ="linenodiv "> < pre > 1
48
+ 2
49
+ 3
50
+ 4
51
+ 5
52
+ 6
53
+ 7
54
+ 8
55
+ 9
56
+ 10
57
+ 11
58
+ 12
59
+ 13
60
+ 14
61
+ 15
62
+ 16
63
+ 17
64
+ 18
65
+ 19
66
+ 20
67
+ 21
68
+ 22
69
+ 23
70
+ 24
71
+ 25
72
+ 26
73
+ 27
74
+ 28
75
+ 29
76
+ 30
77
+ 31
78
+ 32
79
+ 33
80
+ 34
81
+ 35
82
+ 36
83
+ 37
84
+ 38
85
+ 39
86
+ 40
87
+ 41
88
+ 42
89
+ 43
90
+ 44
91
+ 45
92
+ 46
93
+ 47
94
+ 48
95
+ 49
96
+ 50
97
+ 51
98
+ 52
99
+ 53
100
+ 54
101
+ 55</ pre > </ div > </ td > < td class ="code "> < div class ="highlight "> < pre > < span > </ span > # IBM&reg; Decision Optimization Modeling for Python (DOcplex)
102
+
103
+ Welcome to the IBM&reg; Decision Optimization Modeling for Python.
104
+ Licensed under the Apache License v2.0.
105
+
106
+ With this library, you can quickly and easily add the power of optimization to
107
+ your application. ou need IBM ILOG CPLEX Optimization Studio to solve the models.
108
+
109
+ This library is composed of 2 modules:
110
+
111
+ * IBM&reg; Decision Optimization CPLEX Optimizer Modeling for Python - with namespace docplex.mp
112
+ * IBM&reg; Decision Optimization CP Optimizer Modeling for Python - with namespace docplex.cp
113
+
114
+ Solving with CPLEX locally requires that IBM&reg; ILOG CPLEX Optimization Studio V12.8 or later
115
+ is installed on your machine.
116
+
117
+ This library is numpy friendly.
118
+
119
+ ## Install the library
120
+
121
+ ```
122
+ pip install docplex
123
+ ```
124
+
125
+ ## Get the documentation and examples
126
+
127
+ * [Documentation](http://ibmdecisionoptimization.github.io/docplex-doc/)
128
+ * [Examples](https://github.com/IBMDecisionOptimization/docplex-examples)
129
+
130
+ ## Get your IBM&reg; ILOG CPLEX Optimization Studio edition
131
+
132
+ - You can get a free [Community Edition](https://www.ibm.com/account/reg/us-en/signup?formid=urx-20028)
133
+ of CPLEX Optimization Studio, with limited solving capabilities in term of problem size.
134
+
135
+ - Faculty members, research professionals at accredited institutions can get access to an unlimited version of CPLEX through the
136
+ [IBM&reg; Academic Initiative](http://ibm.biz/cplex-free-for-students).
137
+
138
+ ## Dependencies
139
+
140
+ These third-party dependencies are automatically installed with ``pip``
141
+
142
+ - [docloud](https://pypi.python.org/pypi/docloud)
143
+ - [enum34](https://pypi.python.org/pypi/enum34)
144
+ - [futures](https://pypi.python.org/pypi/futures)
145
+ - [requests](https://pypi.python.org/pypi/requests)
146
+ - [six](https://pypi.python.org/pypi/six)
147
+ - [certifi](https://pypi.python.org/pypi/certifi)
148
+ - [chardet](https://pypi.python.org/pypi/chardet)
149
+ - [idna](https://pypi.python.org/pypi/idna)
150
+ - [urllib3](https://pypi.python.org/pypi/urllib3)
151
+
152
+
153
+ ## License
154
+
155
+ This library is delivered under the Apache License Version 2.0, January 2004 (see LICENSE.txt).
156
+ </ pre > </ div >
157
+ </ td > </ tr > </ table > </ div >
158
+ </ div >
159
+
160
+
161
+ </ div >
162
+ </ div >
163
+ </ div >
164
+ < div class ="clearer "> </ div >
165
+ </ div >
166
+ < div class ="related " role ="navigation " aria-label ="related navigation ">
167
+ < h3 > Navigation</ h3 >
168
+ < ul >
169
+ < li class ="right " style ="margin-right: 10px ">
170
+ < a href ="genindex.html " title ="General Index "
171
+ > index</ a > </ li >
172
+ < li class ="nav-item nav-item-0 "> < a href ="index.html "> IBM® Decision Optimization CPLEX® Modeling for Python (DOcplex) V2.16 documentation</ a > »</ li >
173
+ </ ul >
174
+ </ div >
175
+ < div class ="footer " role ="contentinfo ">
176
+ © Copyright 2016-2020, IBM®.
177
+ </ div >
178
+ </ body >
179
+ </ html >
0 commit comments