]> CRI, Mines Paris - PSL - linpy.git/blobdiff - examples/diamond.py
Fix make test
[linpy.git] / examples / diamond.py
index 148cdca3ce546dc28db06b4dfd1ab30bb80a26fc..ad0942b422838dbfeec5d2f3d751327b258c7eb9 100755 (executable)
@@ -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'))
-