[cig-commits] r7560 - short/3D/PyLith/trunk/playpen/verification

brad at geodynamics.org brad at geodynamics.org
Thu Jun 28 20:43:25 PDT 2007


Author: brad
Date: 2007-06-28 20:43:24 -0700 (Thu, 28 Jun 2007)
New Revision: 7560

Modified:
   short/3D/PyLith/trunk/playpen/verification/verify.py
Log:
Fixed bug where split() relied on single space between fields, not whitespace. Removed debugging dumps.

Modified: short/3D/PyLith/trunk/playpen/verification/verify.py
===================================================================
--- short/3D/PyLith/trunk/playpen/verification/verify.py	2007-06-29 03:42:55 UTC (rev 7559)
+++ short/3D/PyLith/trunk/playpen/verification/verify.py	2007-06-29 03:43:24 UTC (rev 7560)
@@ -26,12 +26,9 @@
   def compare(self, file1, file2):
     def convertLine(line):
       parts = line.split()
-      print parts
       return (int(parts[0]), float(parts[1]), float(parts[2]), float(parts[3]))
     data1 = self.readVTK(file1)
     data2 = self.readVTK(file2)
-    print data1
-    print data2
     if not data1 == data2:
       # Do full check
       for line1, line2 in zip(data1, data2):



More information about the cig-commits mailing list