Add sparsification to the benchmark

This commit is contained in:
Clement Jamin 2014-12-18 22:00:26 +01:00
parent 035f87a65f
commit 7bcf0e6e3b
1 changed files with 2 additions and 2 deletions

View File

@ -156,8 +156,8 @@ int main()
std::cerr << "Number of points before sparsification: "
<< points.size() << std::endl;
//points = sparsify_point_set(
// k, points, FT(INPUT_SPARSITY)*FT(INPUT_SPARSITY));
points = sparsify_point_set(
k, points, FT(INPUT_SPARSITY)*FT(INPUT_SPARSITY));
std::cerr << "Number of points after sparsification: "
<< points.size() << std::endl;