X-Git-Url: https://scm.cri.ensmp.fr/git/linpy.git/blobdiff_plain/1b9c772ffc21a71d146a093537d371d63be16c75..ead3c442d29f0c45989d165f34e27dd0eb7d87c4:/examples/diamond.py diff --git a/examples/diamond.py b/examples/diamond.py index 148cdca..ad0942b 100755 --- a/examples/diamond.py +++ b/examples/diamond.py @@ -6,4 +6,3 @@ 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')) -