From 7bcf0e6e3bfb3c98df1301d4fe76ebc836bd3cd7 Mon Sep 17 00:00:00 2001 From: Clement Jamin Date: Thu, 18 Dec 2014 22:00:26 +0100 Subject: [PATCH] Add sparsification to the benchmark --- .../benchmark/Tangential_complex/benchmark_tc.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Tangential_complex/benchmark/Tangential_complex/benchmark_tc.cpp b/Tangential_complex/benchmark/Tangential_complex/benchmark_tc.cpp index 391d5162155..ad910233802 100644 --- a/Tangential_complex/benchmark/Tangential_complex/benchmark_tc.cpp +++ b/Tangential_complex/benchmark/Tangential_complex/benchmark_tc.cpp @@ -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;