DBCP: Disciplined Biconvex Programming
DBCP is a CVXPY extension for modeling and approximately solving biconvex optimization problems of the form
$$ \begin{array}{ll} \text{minimize} & f_0(x,y) \ \text{subject to} & f_i(x,y) \leq 0, \quad i=1,\ldots,m \ & h_i(x,y)=0, \quad i=1,\ldots,p, \end{array} $$
where $x \in \mathcal{X}$ and $y \in \mathcal{Y}$ are two variable blocks. With either block fixed, the objective and inequality functions are convex in the other block, and the equality functions are affine in the other block. The theoretical and technical details are described in the accompanying paper.
Basic idea
DBCP extends CVXPY's disciplined convex programming rules with structured products between expressions from the two variable blocks. A model is accepted when fixing either supplied block produces a DCP-compliant CVXPY problem.
DBCP solves accepted models with proximal alternating convex search.
BiconvexProblem.solve() uses the original constraints by default; its
mode="penalty" option instead introduces and penalizes constraint slacks to
permit infeasible iterates. The user guide
describes the modeling rules, solution methods, and result statuses in detail.
Installation
PyPI
DBCP requires Python 3.12 or newer, CVXPY 1.9 or newer, and NumPy 2.3.3 or newer. Install it from PyPI with:
pip install dbcp
Development setup
DBCP manages its development environment with uv. After installing uv, clone the repository and install the locked development dependencies:
git clone https://github.com/dxogrp/dbcp.git
cd dbcp
make sync
Quick start
This example factors a nonnegative matrix $A\in\mathbf{R}^{m\times n}$ as $XY$, where $X\in\mathbf{R}^{m\times k}$ and $Y\in\mathbf{R}^{k\times n}$:
$$ \begin{array}{ll} \text{minimize} & |XY-A|F^2 \ \text{subject to} & X{ij} \geq 0,\quad i=1,\ldots,m,\quad j=1,\ldots,k\ & Y_{ij} \geq 0,\quad i=1,\ldots,k,\quad j=1,\ldots,n. \end{array} $$
The objective is convex in $X$ for fixed $Y$ and convex in $Y$ for fixed $X$.
import cvxpy as cp
import numpy as np
import dbcp
rng = np.random.default_rng(10015)
m, n, k = 5, 10, 3
A = rng.random((m, k)) @ rng.random((k, n))
X = cp.Variable((m, k), name="X")
Y = cp.Variable((k, n), name="Y")
X.value = rng.random(X.shape)
Y.value = rng.random(Y.shape)
problem = dbcp.BiconvexProblem(
cp.Minimize(cp.sum_squares(X @ Y - A)),
[X],
[Y],
[X >= 0, Y >= 0],
)
assert problem.is_dbcp()
value = problem.solve()
The [X] and [Y] arguments supply the x_var and y_var variable groups,
while the last argument encodes the nonnegativity constraints. DBCP alternately
optimizes one group while holding the other fixed and writes the result into
the original CVXPY variables.
Because unset variables are initialized randomly, different starting points
can produce different factorizations. Assign X.value and Y.value before
solve() when a specific warm start is desired.
Documentation
The complete user guide and API reference are available in the published documentation. To build and preview the documentation locally, run:
make docs
Examples
The examples directory contains seven
Marimo notebooks demonstrating DBCP. Run
make marimo
to install Marimo and open the notebooks in your browser. Executed, non-interactive versions are available in the published example gallery.
License
DBCP is licensed under the Apache License 2.0.
Citing
If you find DBCP useful in your research, please consider citing our paper.
Release files for dbcp 1.0.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| dbcp-1.0.0.tar.gz | 14.5 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| dbcp-1.0.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 29.4 kB
Release files / dbcp-1.0.0.tar.gz
| Download URL | dbcp-1.0.0.tar.gz |
|---|---|
| Size | 14.5 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
601cc55425058ddaa6d2d1c0284d2387814accdbd11453bf6c7e303b750feca3
|
|
BLAKE2b-256 checksum How to use checksums |
afd259c6cde2552d513ce956167dbb1651f42ef99e33e4d4e3c233d4e7cf358f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 9, 2026.
Transparency logRelease files / dbcp-1.0.0-py3-none-any.whl
| Download URL | dbcp-1.0.0-py3-none-any.whl |
|---|---|
| Size | 14.9 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
0bf19d0bcf20fef2e120d555c6f8c9f90fcf293b3d21db55bc61a906ef667312
|
|
BLAKE2b-256 checksum How to use checksums |
616a381c56d926674ca24eecdec15e73e857d6f88cb76c85fea8dc11e1290ca0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 9, 2026.
Transparency log