[MOAB-dev] r1860 - MOAB/trunk

kraftche at mcs.anl.gov kraftche at mcs.anl.gov
Thu May 29 09:40:47 CDT 2008


Author: kraftche
Date: 2008-05-29 09:40:47 -0500 (Thu, 29 May 2008)
New Revision: 1860

Modified:
   MOAB/trunk/MBAdaptiveKDTree.cpp
Log:
change default number of candidate split planes per axis considered during tree construction from 5 to 3:  need to sacrifice some tree quality to get practical tree construction times

Modified: MOAB/trunk/MBAdaptiveKDTree.cpp
===================================================================
--- MOAB/trunk/MBAdaptiveKDTree.cpp	2008-05-29 13:44:39 UTC (rev 1859)
+++ MOAB/trunk/MBAdaptiveKDTree.cpp	2008-05-29 14:40:47 UTC (rev 1860)
@@ -36,7 +36,7 @@
 MBAdaptiveKDTree::Settings::Settings()
   : maxEntPerLeaf(6), 
     maxTreeDepth(30),
-    candidateSplitsPerDir(5),
+    candidateSplitsPerDir(3),
     candidatePlaneSet(SUBDIVISION_SNAP),
     minBoxWidth( std::numeric_limits<double>::epsilon() )
   {}




More information about the moab-dev mailing list