projects
/
linpy.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
New example: basic implementation of ACI'10
[linpy.git]
/
examples
/
diamond.py
diff --git
a/examples/diamond.py
b/examples/diamond.py
index
148cdca
..
1681054
100755
(executable)
--- a/
examples/diamond.py
+++ b/
examples/diamond.py
@@
-5,5
+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.drop_dims('y'))
-
+print('projected on x:', diam.project_out([y]))