summaryrefslogtreecommitdiff
path: root/src/Subsampling/example
diff options
context:
space:
mode:
authorskachano <skachano@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2016-09-20 09:59:15 +0000
committerskachano <skachano@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2016-09-20 09:59:15 +0000
commite8183d76c99eac5458d8f72cb4479cc680c6a6c4 (patch)
tree4fc4427f5b1974244b31bd44c2c2cf56c930e81b /src/Subsampling/example
parentd38ddb2d2b6943e1e9b26694ac624f85263ad24b (diff)
Changed the names of files as well
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/subsampling_and_spatialsearching@1514 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: df3b82dc1d07b5d51b1c1bed4b5abd823129d4a8
Diffstat (limited to 'src/Subsampling/example')
-rw-r--r--src/Subsampling/example/example_choose_n_farthest_points.cpp (renamed from src/Subsampling/example/example_choose_by_farthest_point.cpp)4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Subsampling/example/example_choose_by_farthest_point.cpp b/src/Subsampling/example/example_choose_n_farthest_points.cpp
index 29ecbf9b..9955d0ec 100644
--- a/src/Subsampling/example/example_choose_by_farthest_point.cpp
+++ b/src/Subsampling/example/example_choose_n_farthest_points.cpp
@@ -1,4 +1,4 @@
-#include <gudhi/choose_by_farthest_point.h>
+#include <gudhi/choose_n_farthest_points.h>
#include <CGAL/Epick_d.h>
#include <CGAL/Random.h>
@@ -21,7 +21,7 @@ int main (void)
K k;
std::vector<Point_d> results;
- Gudhi::subsampling::choose_by_farthest_point(k, points, 100, std::back_inserter(results));
+ Gudhi::subsampling::choose_n_farthest_points(k, points, 100, std::back_inserter(results));
std::cout << "Before sparsification: " << points.size() << " points.\n";
std::cout << "After sparsification: " << results.size() << " points.\n";