[cig-commits] r22118 - short/3D/PyLith/trunk/pylith/perf

brad at geodynamics.org brad at geodynamics.org
Mon May 20 15:33:40 PDT 2013


Author: brad
Date: 2013-05-20 15:33:39 -0700 (Mon, 20 May 2013)
New Revision: 22118

Modified:
   short/3D/PyLith/trunk/pylith/perf/Mesh.py
Log:
Added missing cell type (point).

Modified: short/3D/PyLith/trunk/pylith/perf/Mesh.py
===================================================================
--- short/3D/PyLith/trunk/pylith/perf/Mesh.py	2013-05-20 22:33:13 UTC (rev 22117)
+++ short/3D/PyLith/trunk/pylith/perf/Mesh.py	2013-05-20 22:33:39 UTC (rev 22118)
@@ -22,7 +22,8 @@
 
 from Memory import Memory
 
-cellTypes = {(1,2): 'line2',
+cellTypes = {(0,1): 'point',
+             (1,2): 'line2',
              (1,3): 'line3',
              (2,3): 'tri3',
              (2,6): 'tri6',



More information about the CIG-COMMITS mailing list