Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
RSchwan committed Jul 14, 2023
1 parent 6a7dd30 commit 82574c6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions docs/_common/problem_formulation.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ $$

with primal decision variables $$x \in \mathbb{R}^n$$, matrices $$P\in \mathbb{S}_+^n$$, $$A \in \mathbb{R}^{p \times n}$$, $$G \in \mathbb{R}^{m \times n}$$, and vectors $$c \in \mathbb{R}^n$$, $$b \in \mathbb{R}^p$$, $$h \in \mathbb{R}^m$$, $$x_{lb} \in \mathbb{R}^n$$, and $$x_{ub} \in \mathbb{R}^n$$.

{: .note }
PIQP can handle infinite box constraints well, i.e. when elements of $$x_{lb}$$ or $$x_{ub}$$ are $$-\infty$$ or $$\infty$$, respectively. On the contrary, infinite values in the general inequalities $$Gx \leq h = \pm \infty$$ can cause problems, i.e., they are converted internally to `-1e30` and `1e30`, respectively.

### Example QP

In the following the C++ interface of PIQP will be introduced using the following example QP problem:
Expand Down

0 comments on commit 82574c6

Please sign in to comment.