X-Git-Url: https://scm.cri.ensmp.fr/git/linpy.git/blobdiff_plain/1b9c772ffc21a71d146a093537d371d63be16c75..c5ec50e02bb591e2ce3b28131424d21c02255f3b:/examples/diamond.py?ds=inline diff --git a/examples/diamond.py b/examples/diamond.py deleted file mode 100755 index 148cdca..0000000 --- a/examples/diamond.py +++ /dev/null @@ -1,9 +0,0 @@ -#!/usr/bin/env python3 - -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')) -