[cig-commits] r19610 - short/3D/PyLith/trunk/unittests/libtests/meshio

brad at geodynamics.org brad at geodynamics.org
Fri Feb 10 09:10:11 PST 2012


Author: brad
Date: 2012-02-10 09:10:11 -0800 (Fri, 10 Feb 2012)
New Revision: 19610

Modified:
   short/3D/PyLith/trunk/unittests/libtests/meshio/TestOutputSolnPoints.cc
Log:
Move points epsilon away from cell boundaries in tests for OutputSolnPoints.

Modified: short/3D/PyLith/trunk/unittests/libtests/meshio/TestOutputSolnPoints.cc
===================================================================
--- short/3D/PyLith/trunk/unittests/libtests/meshio/TestOutputSolnPoints.cc	2012-02-10 17:01:51 UTC (rev 19609)
+++ short/3D/PyLith/trunk/unittests/libtests/meshio/TestOutputSolnPoints.cc	2012-02-10 17:10:11 UTC (rev 19610)
@@ -129,13 +129,13 @@
   const char* meshFilename = "data/hex8.mesh";
   const int numPoints = 7;
   const PylithScalar points[21] = { 
-    0.0,  0.1,  0.2, // interior points
+    0.0001,  0.1,  0.2, // interior points
     0.3, -0.4,  0.5,
     0.6,  0.7, -0.8,
-   -1.0,  0.1, -0.3,
+   -0.9999,  0.1, -0.3,
     0.3,  0.8,  0.5,
     0.3,  0.9999,  0.9999, // edge point
-    0.0,  0.9999,  -0.999999, // vertex point
+    0.000001,  0.9999,  -0.999999, // vertex point
   };
   const int nvertices = numPoints;
   const int verticesE[7] = { 7, 8, 9, 10, 11, 12, 13 };



More information about the CIG-COMMITS mailing list