summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfgodi <fgodi@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2018-03-29 09:58:24 +0000
committerfgodi <fgodi@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2018-03-29 09:58:24 +0000
commitacd156a740dce76d3ea5ea569e56f7a30c81a046 (patch)
tree3664a17b91b01307fe36f2924c48956b186fb2e0
parent552ce6a0b42af77e210d252d8e8c5b25138a518b (diff)
fvec simplex_tree
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/toplex_map@3315 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: eb72df78970030b4835b020af679b5de5b2c2356
-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;