X-Git-Url: https://scm.cri.minesparis.psl.eu/git/linpy.git/blobdiff_plain/1b9c772ffc21a71d146a093537d371d63be16c75..6a8f0d937524e9210b3283f8331ccaf6ce3caaa3:/examples/diamond.py

diff --git a/examples/diamond.py b/examples/diamond.py
index 148cdca..5d0de4e 100755
--- a/examples/diamond.py
+++ b/examples/diamond.py
@@ -5,5 +5,4 @@ from pypol import *
 x, y = symbols('x y')
 diam = Ge(y, x - 1) & Le(y, x + 1) & Ge(y, -x - 1) & Le(y, -x + 1)
 print('diamond:', diam)
-print('projected on x:', diam.drop_dims('y'))
-
+print('projected on x:', diam.project([y]))