X-Git-Url: https://svn.cri.mines-paristech.fr/git/linpy.git/blobdiff_plain/d6444456ceaeed6fcf1d44386edefb5b1fb8ec66..8332ae24f41a1f2bbba78597cc9e412ef9935ae8:/examples/diamond.py

diff --git a/examples/diamond.py b/examples/diamond.py
index 1681054..5d0de4e 100755
--- a/examples/diamond.py
+++ b/examples/diamond.py
@@ -5,4 +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.project_out([y]))
+print('projected on x:', diam.project([y]))