COBYQA, an acronym for Constrained Optimization BY Quadratic Approximations, is designed to supersede COBYLA as a general derivative-free optimization solver. It can handle unconstrained, bound-constrained, linearly constrained, and nonlinearly constrained problems. It uses only function values of the objective and constraint functions, if any. No derivative information is needed.
Documentation: https://www.cobyqa.com.
Installation
COBYQA can be installed for Python 3.10 or above.
Dependencies
The following Python packages are required by COBYQA:
If you install COBYQA using pip or conda (see below), these dependencies will be installed automatically.
User installation
The easiest way to install COBYQA is using pip or conda. To install it using pip, run in a terminal or command window
pip install cobyqa
If you are using conda, you can install COBYQA from the conda-forge channel by running
conda install conda-forge::cobyqa
To check your installation, you can execute
python -c "import cobyqa; cobyqa.show_versions()"
If your python launcher is not python, you can replace it with the appropriate command (similarly for pip and conda). For example, you may need to use python3 instead of python and pip3 instead of pip.
Testing
To execute the test suite of COBYQA, you first need to install pytest. You can then run the test suite by executing
pytest --pyargs cobyqa
The test suite takes several minutes to run. It is unnecessary to run the test suite if you installed COBYQA using the recommended method described above.
Examples
The folder examples contains a few examples of how to use COBYQA. These files contain headers explaining what problems they solve.
Support
To report a bug or request a new feature, please open a new issue using the issue tracker.
Release files for cobyqa 1.1.4
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| cobyqa-1.1.4.tar.gz | 59.1 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| cobyqa-1.1.4-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 118.1 kB
Release files / cobyqa-1.1.4.tar.gz
| Download URL | cobyqa-1.1.4.tar.gz |
|---|---|
| Size | 59.1 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
18a12bba19615877abb20d5719e1b88e0053def2d2e07f98c8bed16fedc7f4b0
|
|
BLAKE2b-256 checksum How to use checksums |
58441ac6ade8fe22d482d238d0b34c99a65dc5e866d97ca66049695564cc53dd
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / cobyqa-1.1.4-py3-none-any.whl
| Download URL | cobyqa-1.1.4-py3-none-any.whl |
|---|---|
| Size | 59.0 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
42da6827982fa947e2d9b4e8c7a046d1fe8508b4dc53a678fe5b153c3560ca32
|
|
BLAKE2b-256 checksum How to use checksums |
1d88026c28795932969b125e3f4c35a531ec56130a99baf3368e41c4ed0747c4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|