From e11320dfcad6863fe4dbaf53fdc387fc6ed4e013 Mon Sep 17 00:00:00 2001 From: Dongryeol Lee Date: Mon, 7 Feb 2011 17:52:52 +0000 Subject: [PATCH] Back to vanilla. --- .../dongryel/thesis_research/core/table/distributed_table.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fastlib/trunk/contrib/dongryel/thesis_research/core/table/distributed_table.h b/fastlib/trunk/contrib/dongryel/thesis_research/core/table/distributed_table.h index 0217883da5..077977f723 100644 --- a/fastlib/trunk/contrib/dongryel/thesis_research/core/table/distributed_table.h +++ b/fastlib/trunk/contrib/dongryel/thesis_research/core/table/distributed_table.h @@ -378,9 +378,9 @@ class DistributedTable: public boost::noncopyable { boost::mpi::communicator &world, int leaf_size, double sample_probability_in) { - core::parallel::SampleDistributedTreeBuilder < + core::parallel::VanillaDistributedTreeBuilder < DistributedTableType > builder; - builder.Init(*this, 0.2); + builder.Init(*this); builder.Build(world, metric_in, leaf_size); }