[cig-commits] r22768 - short/3D/PyLith/branches/v1.9-stable/pylith/problems
brad at geodynamics.org
brad at geodynamics.org
Tue Sep 3 17:03:07 PDT 2013
Author: brad
Date: 2013-09-03 17:03:07 -0700 (Tue, 03 Sep 2013)
New Revision: 22768
Modified:
short/3D/PyLith/branches/v1.9-stable/pylith/problems/Explicit.py
Log:
Remove excess logging.
Modified: short/3D/PyLith/branches/v1.9-stable/pylith/problems/Explicit.py
===================================================================
--- short/3D/PyLith/branches/v1.9-stable/pylith/problems/Explicit.py 2013-09-04 00:02:50 UTC (rev 22767)
+++ short/3D/PyLith/branches/v1.9-stable/pylith/problems/Explicit.py 2013-09-04 00:03:07 UTC (rev 22768)
@@ -199,9 +199,6 @@
"""
Advance to next time step.
"""
- logEvent = "%sstep" % self._loggingPrefix
- self._eventLogger.eventBegin(logEvent)
-
from pylith.mpi.Communicator import mpi_comm_world
comm = mpi_comm_world()
@@ -209,11 +206,10 @@
if 0 == comm.rank:
self._info.log("Solving equations.")
+
residual = self.fields.get("residual")
dispIncr = self.fields.get("dispIncr(t->t+dt)")
self.solver.solve(dispIncr, self.jacobian, residual)
-
- self._eventLogger.eventEnd(logEvent)
return
More information about the CIG-COMMITS
mailing list