Skip to content

Commit a2c5a5d

Browse files
authored
Merge pull request #81 from IBMDecisionOptimization/vberaudi-2.24
New 2.24 version
2 parents 18bc95d + 4481937 commit a2c5a5d

File tree

87 files changed

+5945
-5563
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+5945
-5563
lines changed

README.md

Lines changed: 61 additions & 62 deletions
Original file line numberDiff line numberDiff line change
@@ -1,62 +1,61 @@
1-
# IBM® Decision Optimization Modeling for Python (DOcplex)
2-
3-
Welcome to the IBM® Decision Optimization Modeling for Python.
4-
Licensed under the Apache License v2.0.
5-
6-
With this library, you can quickly and easily add the power of optimization to
7-
your application. You need IBM ILOG CPLEX Optimization Studio to solve the models.
8-
9-
This library is composed of 2 modules:
10-
11-
* IBM® Decision Optimization CPLEX Optimizer Modeling for Python - with namespace docplex.mp
12-
* IBM® Decision Optimization CP Optimizer Modeling for Python - with namespace docplex.cp
13-
14-
Solving with CPLEX locally requires that IBM® ILOG CPLEX Optimization Studio V12.8 or later
15-
is installed on your machine.
16-
17-
This library is numpy friendly.
18-
19-
## Install the library
20-
21-
```
22-
pip install docplex
23-
```
24-
25-
## Get the documentation and examples
26-
27-
* [Latest documentation](http://ibmdecisionoptimization.github.io/docplex-doc/)
28-
* Documentation archives:
29-
* [2.23.217](http://ibmdecisionoptimization.github.io/docplex-doc/2.23.217)
30-
* [2.22.213](http://ibmdecisionoptimization.github.io/docplex-doc/2.22.213)
31-
* [2.21.207](http://ibmdecisionoptimization.github.io/docplex-doc/2.21.207)
32-
* [2.20.204](http://ibmdecisionoptimization.github.io/docplex-doc/2.20.204)
33-
* [2.19.202](http://ibmdecisionoptimization.github.io/docplex-doc/2.19.202)
34-
* [2.18.200](http://ibmdecisionoptimization.github.io/docplex-doc/2.18.200)
35-
* [2.16.195](http://ibmdecisionoptimization.github.io/docplex-doc/2.16.195)
36-
* [Examples](https://github.com/IBMDecisionOptimization/docplex-examples)
37-
38-
## Get your IBM® ILOG CPLEX Optimization Studio edition
39-
40-
- You can get a free [Community Edition](https://www.ibm.com/account/reg/us-en/signup?formid=urx-20028)
41-
of CPLEX Optimization Studio, with limited solving capabilities in term of problem size.
42-
43-
- Faculty members, research professionals at accredited institutions can get access to an unlimited version of CPLEX through the
44-
[IBM® Academic Initiative](http://ibm.biz/cplex-free-for-students).
45-
46-
## Dependencies
47-
48-
These third-party dependencies are automatically installed with ``pip``
49-
50-
- [enum34](https://pypi.python.org/pypi/enum34)
51-
- [futures](https://pypi.python.org/pypi/futures)
52-
- [requests](https://pypi.python.org/pypi/requests)
53-
- [six](https://pypi.python.org/pypi/six)
54-
- [certifi](https://pypi.python.org/pypi/certifi)
55-
- [chardet](https://pypi.python.org/pypi/chardet)
56-
- [idna](https://pypi.python.org/pypi/idna)
57-
- [urllib3](https://pypi.python.org/pypi/urllib3)
58-
59-
60-
## License
61-
62-
This library is delivered under the Apache License Version 2.0, January 2004 (see LICENSE.txt).
1+
# IBM® Decision Optimization Modeling for Python (DOcplex)
2+
3+
Welcome to the IBM® Decision Optimization Modeling for Python.
4+
Licensed under the Apache License v2.0.
5+
6+
With this library, you can quickly and easily add the power of optimization to
7+
your application. You need IBM ILOG CPLEX Optimization Studio to solve the models.
8+
9+
This library is composed of 2 modules:
10+
11+
* IBM® Decision Optimization CPLEX Optimizer Modeling for Python - with namespace docplex.mp
12+
* IBM® Decision Optimization CP Optimizer Modeling for Python - with namespace docplex.cp
13+
14+
Solving with CPLEX requires that IBM® ILOG CPLEX Optimization Studio V12.10 or later
15+
is installed on your machine.
16+
17+
This library is numpy friendly.
18+
19+
## Install the library
20+
21+
```
22+
pip install docplex
23+
```
24+
25+
## Get the documentation and examples
26+
27+
* [Latest documentation](http://ibmdecisionoptimization.github.io/docplex-doc/)
28+
* Documentation archives:
29+
* [2.23.222](http://ibmdecisionoptimization.github.io/docplex-doc/2.23.222)
30+
* [2.22.213](http://ibmdecisionoptimization.github.io/docplex-doc/2.22.213)
31+
* [2.21.207](http://ibmdecisionoptimization.github.io/docplex-doc/2.21.207)
32+
* [2.20.204](http://ibmdecisionoptimization.github.io/docplex-doc/2.20.204)
33+
* [2.19.202](http://ibmdecisionoptimization.github.io/docplex-doc/2.19.202)
34+
* [2.18.200](http://ibmdecisionoptimization.github.io/docplex-doc/2.18.200)
35+
* [2.16.195](http://ibmdecisionoptimization.github.io/docplex-doc/2.16.195)
36+
* [Examples](https://github.com/IBMDecisionOptimization/docplex-examples)
37+
38+
## Get your IBM® ILOG CPLEX Optimization Studio edition
39+
40+
- You can get a free [Community Edition](https://www.ibm.com/account/reg/us-en/signup?formid=urx-20028)
41+
of CPLEX Optimization Studio, with limited solving capabilities in term of problem size.
42+
43+
- Faculty members, research professionals at accredited institutions can get access to an unlimited version of CPLEX through the
44+
[IBM® Academic Initiative](http://ibm.biz/cplex-free-for-students).
45+
46+
## Dependencies
47+
48+
These third-party dependencies are automatically installed with ``pip``
49+
50+
- [futures](https://pypi.python.org/pypi/futures)
51+
- [requests](https://pypi.python.org/pypi/requests)
52+
- [six](https://pypi.python.org/pypi/six)
53+
- [certifi](https://pypi.python.org/pypi/certifi)
54+
- [chardet](https://pypi.python.org/pypi/chardet)
55+
- [idna](https://pypi.python.org/pypi/idna)
56+
- [urllib3](https://pypi.python.org/pypi/urllib3)
57+
58+
59+
## License
60+
61+
This library is delivered under the Apache License Version 2.0, January 2004 (see LICENSE.txt).

examples/cp/basic/color.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# --------------------------------------------------------------------------
22
# Source file provided under Apache License, Version 2.0, January 2004,
33
# http://www.apache.org/licenses/
4-
# (c) Copyright IBM Corp. 2015, 2016
4+
# (c) Copyright IBM Corp. 2015, 2022
55
# --------------------------------------------------------------------------
66

77
"""

0 commit comments

Comments
 (0)