--- trunk/finley/test/python/PoissonSolverTest.py 2005/12/02 05:49:29 301 +++ trunk/finley/test/python/PoissonSolverTest.py 2005/12/02 05:51:51 302 @@ -38,7 +38,7 @@ #construct mask: msk=Scalar(0.,cf) for i in range(mydomain.getDim()): - msk+=x[i].whereZero()+(x[i]-l[i]).whereZero() + msk+=whereZero(x[i])+whereZero(x[i]-l[i]) #construct right hand side f=Scalar(0,cf) for i in range(mydomain.getDim()): @@ -72,7 +72,7 @@ #construct mask: msk=Scalar(0.,cf) for i in range(mydomain.getDim()): - msk+=x[i].whereZero() + msk+=whereZero(x[i]) #construct right hand side f=Scalar(0,cf) for i in range(mydomain.getDim()):