[cig-commits] r11645 - short/3D/PyLith/trunk/pylith/bc

brad at geodynamics.org brad at geodynamics.org
Sun Mar 30 17:29:58 PDT 2008


Author: brad
Date: 2008-03-30 17:29:58 -0700 (Sun, 30 Mar 2008)
New Revision: 11645

Modified:
   short/3D/PyLith/trunk/pylith/bc/DirichletBoundary.py
   short/3D/PyLith/trunk/pylith/bc/Neumann.py
Log:
Fixed bugs. Added missing argument to verifyConfiguration() for output.

Modified: short/3D/PyLith/trunk/pylith/bc/DirichletBoundary.py
===================================================================
--- short/3D/PyLith/trunk/pylith/bc/DirichletBoundary.py	2008-03-30 22:21:28 UTC (rev 11644)
+++ short/3D/PyLith/trunk/pylith/bc/DirichletBoundary.py	2008-03-31 00:29:58 UTC (rev 11645)
@@ -130,7 +130,7 @@
 
     BoundaryCondition.verifyConfiguration(self)
     Constraint.verifyConfiguration(self)
-    self.output.verifyConfiguration()
+    self.output.verifyConfiguration(self.mesh)
 
     self._logger.eventEnd(logEvent)
     return

Modified: short/3D/PyLith/trunk/pylith/bc/Neumann.py
===================================================================
--- short/3D/PyLith/trunk/pylith/bc/Neumann.py	2008-03-30 22:21:28 UTC (rev 11644)
+++ short/3D/PyLith/trunk/pylith/bc/Neumann.py	2008-03-31 00:29:58 UTC (rev 11645)
@@ -102,7 +102,7 @@
               "Dimension of mesh boundary '%s': %d" % \
               (self.quadrature.cellDim,
                self.label, self.mesh.dimension()-1)    
-    self.output.verifyConfiguration()
+    self.output.verifyConfiguration(self.mesh)
 
     self._logger.eventEnd(logEvent)
     return



More information about the cig-commits mailing list