X-Git-Url: https://scm.cri.ensmp.fr/git/linpy.git/blobdiff_plain/d2ec7dd24a7eeab018d12e3ae27d2d1c7226a7f3..40d0f350adb81eb15adb3aa68867aaf768358550:/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]))