[cig-commits] r21326 - short/3D/PyLith/trunk/libsrc/pylith/topology

knepley at geodynamics.org knepley at geodynamics.org
Mon Feb 4 07:34:45 PST 2013


Author: knepley
Date: 2013-02-04 07:34:45 -0800 (Mon, 04 Feb 2013)
New Revision: 21326

Modified:
   short/3D/PyLith/trunk/libsrc/pylith/topology/SubMesh.cc
Log:
Fixed CreateSubmesh() call

Modified: short/3D/PyLith/trunk/libsrc/pylith/topology/SubMesh.cc
===================================================================
--- short/3D/PyLith/trunk/libsrc/pylith/topology/SubMesh.cc	2013-02-04 14:56:14 UTC (rev 21325)
+++ short/3D/PyLith/trunk/libsrc/pylith/topology/SubMesh.cc	2013-02-04 15:34:45 UTC (rev 21326)
@@ -112,7 +112,7 @@
 			  meshSieveMesh->getRealSection("coordinates_dimensioned"));
 
   /* TODO: Add creation of pointSF for submesh */
-  err = DMPlexCreateSubmesh(dmMesh, label, PETSC_NULL, &_newMesh);CHECK_PETSC_ERROR(err);
+  err = DMPlexCreateSubmesh(dmMesh, label, &_newMesh);CHECK_PETSC_ERROR(err);
 
   // Create the parallel overlap
   const ALE::Obj<SieveMesh::sieve_type>& sieve = _mesh->getSieve();



More information about the CIG-COMMITS mailing list