Features • Installation • News • Citing • Contributing
This is a Julia implementation of the Conic operator splitting method (COSMO) solver. It can solve large convex conic optimization problems of the following form:
with decision variables x ϵ R^n
, s ϵ R^m
and data matrices P=P'>=0
, q ϵ R^n
, A ϵ R^(m×n)
, and b ϵ R^m
. The convex set K
is a composition of convex sets and cones.
For more information take a look at the COSMO.jl Documentation (stable | dev).
COSMO
can be added via the Julia package manager (type ]
): pkg> add COSMO
If you find COSMO useful in your project, we kindly request that you cite the following paper:
@Article{Garstka_2021,
author = {Michael Garstka and Mark Cannon and Paul Goulart},
journal = {Journal of Optimization Theory and Applications},
title = {{COSMO}: A Conic Operator Splitting Method for Convex Conic Problems},
volume = {190},
number = {3},
pages = {779--810},
year = {2021},
publisher = {Springer},
doi = {10.1007/s10957-021-01896-x},
url = {https://doi.org/10.1007/s10957-021-01896-x}
}
The article is available under Open Access here.
COSMO can also be called from Python. Take a look at: cosmo-python
This project is licensed under the Apache License - see the LICENSE.md file for details.