X-Git-Url: https://scm.cri.ensmp.fr/git/linpy.git/blobdiff_plain/d6444456ceaeed6fcf1d44386edefb5b1fb8ec66..c5ec50e02bb591e2ce3b28131424d21c02255f3b:/examples/diamond.py diff --git a/examples/diamond.py b/examples/diamond.py deleted file mode 100755 index 1681054..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.project_out([y]))