tags 899019 + patch
thanks

The attached patch addresses the failure.
diff --git a/debian/tests/demoLaplacian.py b/debian/tests/demoLaplacian.py
index 230f3e9..168d009 100755
--- a/debian/tests/demoLaplacian.py
+++ b/debian/tests/demoLaplacian.py
@@ -56,7 +56,7 @@ tleft = abs(fnor[1,:]+1) < 1e-14
 ttop  = abs(fnor[0,:]-1) < 1e-14
 fleft = np.compress(tleft, flst, axis=1)
 ftop  = np.compress(ttop, flst, axis=1)
-fneum = np.compress(True - ttop - tleft, flst, axis=1)
+fneum = np.compress(True ^ ttop ^ tleft, flst, axis=1)
 
 # mark it as boundary
 DIRICHLET_BOUNDARY_NUM1 = 1

Reply via email to