[MOAB-dev] r3295 - MOAB/trunk/tools/mbperf

kraftche at cae.wisc.edu kraftche at cae.wisc.edu
Fri Nov 6 12:15:33 CST 2009


Author: kraftche
Date: 2009-11-06 12:15:33 -0600 (Fri, 06 Nov 2009)
New Revision: 3295

Modified:
   MOAB/trunk/tools/mbperf/mbperf.cpp
Log:
made one of the typical MBInterface errors

Modified: MOAB/trunk/tools/mbperf/mbperf.cpp
===================================================================
--- MOAB/trunk/tools/mbperf/mbperf.cpp	2009-11-06 18:12:14 UTC (rev 3294)
+++ MOAB/trunk/tools/mbperf/mbperf.cpp	2009-11-06 18:15:33 UTC (rev 3295)
@@ -755,7 +755,7 @@
     // force creation of adjacencies
   rval = gMB->get_entities_by_dimension( 0, 0, verts );
   assert(MB_SUCCESS == rval); assert(!verts.empty());
-  rval = gMB->get_adjacencies( verts, 3, false, hexes );
+  rval = gMB->get_adjacencies( verts, 3, false, hexes, MBInterface::UNION );
   assert(MB_SUCCESS == rval); assert(!hexes.empty());
 
   MBSkinner tool(gMB);



More information about the moab-dev mailing list