summaryrefslogtreecommitdiff
path: root/src/Spatial_searching/example
diff options
context:
space:
mode:
authorcjamin <cjamin@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2016-09-22 13:35:38 +0000
committercjamin <cjamin@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2016-09-22 13:35:38 +0000
commit3d2205afe247f23cbe69b98845569708b4263f02 (patch)
treeb507f34ce178bbe8bc994fb01587ad5852a46414 /src/Spatial_searching/example
parentaa994dbd8dadfd4be416f13b13721e7e13c3623a (diff)
Spatial_tree_data_structure => Kd_tree_search
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/subsampling_and_spatialsearching@1538 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 095b038d0e4c1c6d78e9aa9efe73447b65dab2b1
Diffstat (limited to 'src/Spatial_searching/example')
-rw-r--r--src/Spatial_searching/example/example_spatial_searching.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Spatial_searching/example/example_spatial_searching.cpp b/src/Spatial_searching/example/example_spatial_searching.cpp
index ba2ea25f..7b48d055 100644
--- a/src/Spatial_searching/example/example_spatial_searching.cpp
+++ b/src/Spatial_searching/example/example_spatial_searching.cpp
@@ -1,4 +1,4 @@
-#include <gudhi/Spatial_tree_data_structure.h>
+#include <gudhi/Kd_tree_search.h>
#include <CGAL/Epick_d.h>
#include <CGAL/Random.h>
@@ -14,7 +14,7 @@ int main (void)
typedef typename K::Point_d Point;
typedef std::vector<Point> Points;
- typedef gss::Spatial_tree_data_structure<K, Points> Points_ds;
+ typedef gss::Kd_tree_search<K, Points> Points_ds;
CGAL::Random rd;