[cig-commits] r19741 - in short/3D/PyLith/branches/v1.6-stable: libsrc/pylith/problems pylith/apps pylith/utils

brad at geodynamics.org brad at geodynamics.org
Thu Mar 8 10:54:25 PST 2012


Author: brad
Date: 2012-03-08 10:54:25 -0800 (Thu, 08 Mar 2012)
New Revision: 19741

Modified:
   short/3D/PyLith/branches/v1.6-stable/libsrc/pylith/problems/SolverLinear.cc
   short/3D/PyLith/branches/v1.6-stable/pylith/apps/PyLithApp.py
   short/3D/PyLith/branches/v1.6-stable/pylith/utils/PetscComponent.py
Log:
Removed debugging output.

Modified: short/3D/PyLith/branches/v1.6-stable/libsrc/pylith/problems/SolverLinear.cc
===================================================================
--- short/3D/PyLith/branches/v1.6-stable/libsrc/pylith/problems/SolverLinear.cc	2012-03-08 04:09:47 UTC (rev 19740)
+++ short/3D/PyLith/branches/v1.6-stable/libsrc/pylith/problems/SolverLinear.cc	2012-03-08 18:54:25 UTC (rev 19741)
@@ -54,7 +54,6 @@
 { // deallocate
   Solver::deallocate();
 
-  std::cout << "Destroying KSP." << std::endl;
   PetscErrorCode err = KSPDestroy(&_ksp);CHECK_PETSC_ERROR(err);
 } // deallocate
   

Modified: short/3D/PyLith/branches/v1.6-stable/pylith/apps/PyLithApp.py
===================================================================
--- short/3D/PyLith/branches/v1.6-stable/pylith/apps/PyLithApp.py	2012-03-08 04:09:47 UTC (rev 19740)
+++ short/3D/PyLith/branches/v1.6-stable/pylith/apps/PyLithApp.py	2012-03-08 18:54:25 UTC (rev 19741)
@@ -144,6 +144,7 @@
     self.mesher = self.inventory.mesher
     self.problem = self.inventory.problem
     self.perfLogger = self.inventory.perfLogger
+    self.typos = self.inventory.typos
 
     import journal
     self._debug = journal.debug(self.name)

Modified: short/3D/PyLith/branches/v1.6-stable/pylith/utils/PetscComponent.py
===================================================================
--- short/3D/PyLith/branches/v1.6-stable/pylith/utils/PetscComponent.py	2012-03-08 04:09:47 UTC (rev 19740)
+++ short/3D/PyLith/branches/v1.6-stable/pylith/utils/PetscComponent.py	2012-03-08 18:54:25 UTC (rev 19741)
@@ -64,7 +64,6 @@
     """
     Deallocate data structures.
     """
-    print "CLEANUP",self.name
     for component in self.components():
       if isinstance(component, PetscComponent):
         component.cleanup()



More information about the CIG-COMMITS mailing list