Govind Chari
Govind Chari
This is not really an issue, it is more so a question. I noticed that PIQP can return PIQP_PRIMAL_INFEASIBLE or PIQP_DUAL_INFEASIBLE. I read through the PIQP paper and did not...
QOCO and QOCOGEN are two solvers which implement the same algorithm, but QOCOGEN generates custom linear algebra routines. This allows the solvers generated by QOCOGEN (called qoco_custom) to be faster,...
I am running the DQCP example taken from [here](https://www.cvxpy.org/tutorial/dqcp/index.html), I get the following error. Although it appears to be a Mosek error, I wanted to document this issue. ``` Traceback...
**Describe the bug** The hypersonic shape design quasiconvex program example [here](https://www.cvxpy.org/examples/dqcp/hypersonic_shape_design.html) fails when solved with Clarabel and Mosek. **To Reproduce** ``` import cvxpy as cp x = cp.Variable(pos=True) obj =...
**Describe the bug** When running the minimum-length least squares problem [here](https://www.cvxpy.org/examples/dqcp/minimum_length_least_squares.html), the solver fails with error `'
**Describe the bug** The fractional optimization quasiconvex program example [here](https://www.cvxpy.org/examples/dqcp/concave_fractional_function.html) fails when solved with Clarabel, but succeeds with Mosek and ECOS. **To Reproduce** ``` import cvxpy as cp x =...
## Description In quad_form, sometimes redundant variables and additional consensus constraints are created (see issue linked below). This PR is an attempt to remove this. Issue link: https://github.com/cvxpy/cvxpy/issues/2600 ## Type...
**Describe the bug** When parsing optimal control problems (OCP) with quadratic objectives, CVXPY nearly doubles the number of optimization variables in the problem. **To Reproduce** In the code provided, very...
It looks like the PDLP solver can solve QPs, but the CVXPY interface only supports solving LPs with PDLP. Can the solver interface be extended so that QPs can also...