Skip to main content

A Python interface to conic optimization solvers.

Project description

A Python Interface to Conic Optimization Solvers

PICOS is a user friendly Python API to several conic and integer programming solvers, very much like YALMIP or CVX under MATLAB.

PICOS allows you to enter a mathematical optimization problem as a high level model, with painless support for (complex) vector and matrix variables and multidemensional algebra. Your model will be transformed to the standard form understood by an appropriate solver that is available at runtime. This makes your application portable as users have the choice between several commercial and open source solvers.

Features

PICOS runs under both Python 2 and Python 3 and supports the following solvers and problem types. To use a solver, you need to seperately install it along with the Python interface listed here.

Solver Interface LP SOCP SDP QCQP EXP MIP License
CPLEX included Yes Yes Yes Yes non-free
CVXOPT native Yes Yes Yes Yes Yes¹ GPL-3
ECOS² ecos-python Yes Yes Yes Yes Yes GPL-3
GLPK² swiglpk Yes Yes GPL-3
Gurobi included Yes Yes Yes Yes non-free
MOSEK included Yes Yes Yes Yes Yes non-free
SMCP native Yes³ Yes³ Yes Yes³ GPL-3
SCIP² PySCIPOpt Yes Yes Yes Yes ZIB/MIT

¹ only geometric programming, ² work in progress, ³ experimental

Example

This is what it looks like to solve a multidimensional mixed integer program with PICOS:

>>> import picos
>>> P = picos.Problem()
>>> x = P.add_variable("x", 2, vtype="integer")
>>> C = P.add_constraint(x <= 5.5)
>>> P.set_objective("max", 1|x) # 1|x is the sum over x
>>> solution = P.solve(verbose = 0)
>>> print(solution["status"])
'integer optimal solution'
>>> print(P.obj_value())
10.0
>>> print(x)
[ 5.00e+00]
[ 5.00e+00]
>>> print(C.slack)
[ 5.00e-01]
[ 5.00e-01]

Documentation & Source

The full documentation can be found here. The source code lives on GitLab. The page you are reading is featured in both places.

Installation

Via pip

If you are using pip you can run pip install picos to get the latest version.

Via Anaconda

If you are using Anaconda you can run conda install -c picos picos to get the latest version.

Via your system's package manager

On Arch Linux, there are seperate packages in the AUR for the latest version and the latest release. Both are split packages that ship both Python 2 and Python 3 versions of PICOS.

If you are packaging PICOS for additional systems, please tell us so we can list your package here!

From source

If you are installing PICOS manually, you can choose between a number of development versions and source releases. You will need to have at least the following Python packages installed:

Credits

Developers

Contributors

For an up-to-date list of all code contributors, please refer to the contributors page. Should a reference from before 2019 be unclear, you can refer to the old contributors page on GitHub as well.

License

PICOS is free and open source software and available to you under the terms of the GNU GPL v3.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

PICOS-1.1.2.post131.tar.gz (132.0 kB view details)

Uploaded Source

File details

Details for the file PICOS-1.1.2.post131.tar.gz.

File metadata

  • Download URL: PICOS-1.1.2.post131.tar.gz
  • Upload date:
  • Size: 132.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.0

File hashes

Hashes for PICOS-1.1.2.post131.tar.gz
Algorithm Hash digest
SHA256 cec6e7e57486fed57ae78ca9640bacd02fed22b949fa86a5c1afdc7807b7fcfd
MD5 b8ef6eb0a455adcd463fc4736b97a8dd
BLAKE2b-256 07b6f864561d7c9568e34a8b414bf00f8f3431e3284845b2b64e078c154d94c1

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page