summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Rips_complex/example/example_rips_complex_from_fvecs.cpp4
-rw-r--r--src/Witness_complex/example/example_strong_witness_complex_fvecs.cpp4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/Rips_complex/example/example_rips_complex_from_fvecs.cpp b/src/Rips_complex/example/example_rips_complex_from_fvecs.cpp
index 1b683326..e11dc3ea 100644
--- a/src/Rips_complex/example/example_rips_complex_from_fvecs.cpp
+++ b/src/Rips_complex/example/example_rips_complex_from_fvecs.cpp
@@ -30,9 +30,9 @@ int main(int argc, char **argv) {
// Type definitions
using K = CGAL::Epick_d<CGAL::Dynamic_dimension_tag>;
using Point = typename K::Point_d;
- //using Simplex_tree = Gudhi::Simplex_tree<>;
+ using Simplex_tree = Gudhi::Simplex_tree<>;
//using Simplex_tree = Gudhi::Fake_simplex_tree;
- using Simplex_tree = Gudhi::Sb_wrapper;
+ //using Simplex_tree = Gudhi::Sb_wrapper;
using Filtration_value = Simplex_tree::Filtration_value;
using Rips_complex = Gudhi::rips_complex::Rips_complex<Filtration_value>;
using Point_vector = std::vector<Point>;
diff --git a/src/Witness_complex/example/example_strong_witness_complex_fvecs.cpp b/src/Witness_complex/example/example_strong_witness_complex_fvecs.cpp
index 9f5b32c4..5c431ec1 100644
--- a/src/Witness_complex/example/example_strong_witness_complex_fvecs.cpp
+++ b/src/Witness_complex/example/example_strong_witness_complex_fvecs.cpp
@@ -51,9 +51,9 @@ int main(int argc, char * const argv[]) {
int nbL = atoi(argv[2]), lim_dim = atoi(argv[4]);
double alpha2 = atof(argv[3]);
clock_t start, end;
- //Gudhi::Simplex_tree<> simplex_tree;
+ Gudhi::Simplex_tree<> simplex_tree;
//Gudhi::Fake_simplex_tree simplex_tree;
- Gudhi::Sb_wrapper simplex_tree;
+ //Gudhi::Sb_wrapper simplex_tree;
// Read the point file
Point_vector point_vector, landmarks;