[MOAB-dev] r4637 - MOAB/trunk/itaps/imesh

jvporter at wisc.edu jvporter at wisc.edu
Thu Mar 24 14:50:32 CDT 2011


Author: jvporter
Date: 2011-03-24 14:50:32 -0500 (Thu, 24 Mar 2011)
New Revision: 4637

Modified:
   MOAB/trunk/itaps/imesh/MBiMesh.hpp
Log:
Correct adjacency table entries


Modified: MOAB/trunk/itaps/imesh/MBiMesh.hpp
===================================================================
--- MOAB/trunk/itaps/imesh/MBiMesh.hpp	2011-03-24 13:18:05 UTC (rev 4636)
+++ MOAB/trunk/itaps/imesh/MBiMesh.hpp	2011-03-24 19:50:32 UTC (rev 4637)
@@ -45,10 +45,10 @@
         : haveDeletedEntities(false), iCreatedInterface(false), mbImpl(impl)
 {
   int tmp_table[] = {
-      1, 1, 1, 1,
-      1, 0, 2, 2,
-      1, 2, 0, 2,
-      1, 2, 2, 1
+      1, 4, 4, 1,
+      1, 0, 5, 5,
+      1, 5, 0, 5,
+      1, 5, 5, 1
   };
   memcpy(AdjTable, tmp_table, 16*sizeof(int));
 


































More information about the moab-dev mailing list