X-Git-Url: https://scm.cri.ensmp.fr/git/linpy.git/blobdiff_plain/ead3c442d29f0c45989d165f34e27dd0eb7d87c4..c5ec50e02bb591e2ce3b28131424d21c02255f3b:/examples/diamond.py?ds=sidebyside diff --git a/examples/diamond.py b/examples/diamond.py deleted file mode 100755 index ad0942b..0000000 --- a/examples/diamond.py +++ /dev/null @@ -1,8 +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'))