summaryrefslogtreecommitdiff
path: root/src/Rips_complex/include
diff options
context:
space:
mode:
authorvrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2017-03-21 21:05:04 +0000
committervrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2017-03-21 21:05:04 +0000
commitcd0f1b7513be17bfca4de6ea4744a3d931694a8f (patch)
treebeae3ef0c5924543536afe8eb835f3a361f58e74 /src/Rips_complex/include
parentf0d8d8507bff9667289ac29539fe8714119f816a (diff)
Roll back bad modifications
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/ST_cythonize@2216 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 832a1770a18476c18e7ba75754c5ee89225eaf34
Diffstat (limited to 'src/Rips_complex/include')
-rw-r--r--src/Rips_complex/include/gudhi/Rips_complex.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/Rips_complex/include/gudhi/Rips_complex.h b/src/Rips_complex/include/gudhi/Rips_complex.h
index 42669e8b..1e4b76a7 100644
--- a/src/Rips_complex/include/gudhi/Rips_complex.h
+++ b/src/Rips_complex/include/gudhi/Rips_complex.h
@@ -116,21 +116,6 @@ class Rips_complex {
// insert the proximity graph in the simplicial complex
complex.insert_graph(rips_skeleton_graph_);
-
- std::cout << "********************************************************************\n";
- // Display the complex
- std::cout << "* The complex contains " << complex.num_simplices() << " simplices\n";
- std::cout << " - dimension " << complex.dimension() << " - filtration " << complex.filtration() << "\n";
- std::cout << "* Iterator on Simplices in the filtration, with [filtration value]:\n";
- for (auto f_simplex : complex.filtration_simplex_range()) {
- std::cout << " " << "[" << complex.filtration(f_simplex) << "] ";
- for (auto vertex : complex.simplex_vertex_range(f_simplex)) {
- std::cout << static_cast<int>(vertex) << " ";
- }
- std::cout << std::endl;
- }
-
-
// expand the graph until dimension dim_max
complex.expansion(dim_max);
}