[MOAB-dev] r2192 - MOAB/trunk

kraftche at mcs.anl.gov kraftche at mcs.anl.gov
Fri Oct 31 17:01:06 CDT 2008


Author: kraftche
Date: 2008-10-31 17:01:06 -0500 (Fri, 31 Oct 2008)
New Revision: 2192

Modified:
   MOAB/trunk/MBTest.cpp
Log:
remove some unused code from previous checkin

Modified: MOAB/trunk/MBTest.cpp
===================================================================
--- MOAB/trunk/MBTest.cpp	2008-10-31 21:35:34 UTC (rev 2191)
+++ MOAB/trunk/MBTest.cpp	2008-10-31 22:01:06 UTC (rev 2192)
@@ -1907,21 +1907,6 @@
   return mb_mesh_sets_test( mb, MESHSET_ORDERED );
 } 
 
-// Split an MBRange into three non-intersecting
-// strict subsets. Return two and discard one.
-void split_3( const MBRange& all_ents,
-              MBRange& group1,
-              MBRange& group2 )
-{
-  group1.clear();
-  group2.clear();
-  size_t size = all_ents.size();
-  MBRange::iterator i2 = all_ents.begin(); i2 += size/3;
-  MBRange::iterator i3 = i2; i3 += size/3;
-  group1.merge( all_ents.begin(), i2 );
-  group2.merge( i3, all_ents.end() );
-}
-
 // Verify that all query functions *append* to output MBRange
 MBErrorCode mb_mesh_set_appends( MBInterface* mb, int flags )
 {




More information about the moab-dev mailing list