summaryrefslogtreecommitdiff
path: root/src/Witness_complex/example
diff options
context:
space:
mode:
Diffstat (limited to 'src/Witness_complex/example')
-rw-r--r--src/Witness_complex/example/witness_complex_from_file.cpp2
-rw-r--r--src/Witness_complex/example/witness_complex_knn_landmarks.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/Witness_complex/example/witness_complex_from_file.cpp b/src/Witness_complex/example/witness_complex_from_file.cpp
index b842574b..01172fbe 100644
--- a/src/Witness_complex/example/witness_complex_from_file.cpp
+++ b/src/Witness_complex/example/witness_complex_from_file.cpp
@@ -115,7 +115,7 @@ int main (int argc, char * const argv[])
witnessComplex.landmark_choice_by_random_points(point_vector, point_vector.size(), L);
witnessComplex.nearest_landmarks(point_vector,L,WL);
end = clock();
- std::cout << "Landmark choice took "
+ std::cout << "Landmark choice for " << nbL << " landmarks took "
<< (double)(end-start)/CLOCKS_PER_SEC << " s. \n";
// Write the WL matrix in a file
mkdir("output", S_IRWXU);
diff --git a/src/Witness_complex/example/witness_complex_knn_landmarks.cpp b/src/Witness_complex/example/witness_complex_knn_landmarks.cpp
index 2003f218..5580c0eb 100644
--- a/src/Witness_complex/example/witness_complex_knn_landmarks.cpp
+++ b/src/Witness_complex/example/witness_complex_knn_landmarks.cpp
@@ -34,7 +34,7 @@
//#include <boost/filesystem.hpp>
//#include <CGAL/Delaunay_triangulation.h>
-//#include <CGAL/Epick_d.h>
+#include <CGAL/Epick_d.h>
#include <CGAL/K_neighbor_search.h>
using namespace Gudhi;