summaryrefslogtreecommitdiff
path: root/src/Witness_complex/example/witness_complex_from_off.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Witness_complex/example/witness_complex_from_off.cpp')
-rw-r--r--src/Witness_complex/example/witness_complex_from_off.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Witness_complex/example/witness_complex_from_off.cpp b/src/Witness_complex/example/witness_complex_from_off.cpp
index 04d4e601..948f09a8 100644
--- a/src/Witness_complex/example/witness_complex_from_off.cpp
+++ b/src/Witness_complex/example/witness_complex_from_off.cpp
@@ -148,9 +148,11 @@ int main (int argc, char * const argv[])
witnessComplex.setNbL(nbL);
// witnessComplex.witness_complex_from_points(point_vector);
std::vector<std::vector< int > > WL;
+ std::set<int> L;
start = clock();
//witnessComplex.landmark_choice_by_furthest_points(point_vector, point_vector.size(), WL);
- witnessComplex.landmark_choice_by_random_points(point_vector, point_vector.size(), WL);
+ 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 "
<< (double)(end-start)/CLOCKS_PER_SEC << " s. \n";