[cig-commits] [commit] knepley/upgrade-petsc-interface: Mesh: Hardwire mesh interpolation (0f1f7b7)

cig_noreply at geodynamics.org cig_noreply at geodynamics.org
Thu Oct 17 16:15:24 PDT 2013


Repository : ssh://geoshell/pylith

On branch  : knepley/upgrade-petsc-interface
Link       : https://github.com/geodynamics/pylith/compare/8e347a9f5d96fe4c665278ebea3720639379892b...3a1c2fe5ae5b5e0c987791aa2b8eeca011b22468

>---------------------------------------------------------------

commit 0f1f7b7a583b5fc85e9358efc13834dacdd92638
Author: Matthew G. Knepley <knepley at gmail.com>
Date:   Thu Oct 17 13:23:44 2013 -0500

    Mesh: Hardwire mesh interpolation


>---------------------------------------------------------------

0f1f7b7a583b5fc85e9358efc13834dacdd92638
 libsrc/pylith/meshio/MeshBuilder.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libsrc/pylith/meshio/MeshBuilder.cc b/libsrc/pylith/meshio/MeshBuilder.cc
index 4476c76..793bb56 100644
--- a/libsrc/pylith/meshio/MeshBuilder.cc
+++ b/libsrc/pylith/meshio/MeshBuilder.cc
@@ -73,7 +73,7 @@ pylith::meshio::MeshBuilder::buildMesh(topology::Mesh* mesh,
 
   /* DMPlex */
   PetscDM   dmMesh;
-  PetscBool pInterpolate = interpolate ? PETSC_TRUE : PETSC_FALSE;
+  PetscBool pInterpolate = PETSC_TRUE; /* pInterpolate = interpolate ? PETSC_TRUE : PETSC_FALSE; */
   PetscInt  bound        = numCells*numCorners, coff;
 
   err = MPI_Bcast(&dim, 1, MPIU_INT, 0, comm);PYLITH_CHECK_ERROR(err);



More information about the CIG-COMMITS mailing list