From 55188a8327601b16d101a4458e12e686fddf36d8 Mon Sep 17 00:00:00 2001
From: Pantelis Sopasakis
Date: Wed, 20 Mar 2024 14:18:45 +0000
Subject: [PATCH] [ci skip] update webside docs for EpigraphSquaredNorm
---
docs/python-interface.md | 1 +
1 file changed, 1 insertion(+)
diff --git a/docs/python-interface.md b/docs/python-interface.md
index a332ea29..77983d8a 100644
--- a/docs/python-interface.md
+++ b/docs/python-interface.md
@@ -87,6 +87,7 @@ following types of constraints:
| `NoConstraints` | No constraints - the whole $\mathbb{R}^{n}$|
| `Rectangle` | Rectangle, $$R = \\{u \in \mathbb{R}^{n_u} {}:{} f_{\min} \leq u \leq f_{\max}\\},$$ for example, `Rectangle(fmin, fmax)` |
| `SecondOrderCone` | Second-order aka "ice cream" aka "Lorenz" cone |
+| `EpigraphSquaredNorm`| The epigraph of the squared Eucliden norm is a set of the form $X = \\{(z, t) \in \mathbb{R}^{n+1}: \Vert z \Vert \leq t\\}$. |
| `CartesianProduct` | Cartesian product of any of the above. See more information below. |