Force four-point leaves. This is generally faster than one point. More points are probably even better (to a point... hah) but that requires a large k.

This commit is contained in:
Ryan Curtin
2015-03-12 15:42:45 -04:00
parent 0968f5374f
commit 9ffe06de42
@@ -29,7 +29,7 @@ TreeType* BuildTree(
{
// This is a hack. I know this will be BinarySpaceTree, so force a leaf size
// of two.
return new TreeType(dataset, oldFromNew, 1);
return new TreeType(dataset, oldFromNew, 4);
}
//! Call the tree constructor that does not do mapping.