summaryrefslogtreecommitdiff
path: root/src/Persistent_cohomology/example/rips_persistence_step_by_step.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Persistent_cohomology/example/rips_persistence_step_by_step.cpp')
-rw-r--r--src/Persistent_cohomology/example/rips_persistence_step_by_step.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Persistent_cohomology/example/rips_persistence_step_by_step.cpp b/src/Persistent_cohomology/example/rips_persistence_step_by_step.cpp
index 554eeba6..75580aac 100644
--- a/src/Persistent_cohomology/example/rips_persistence_step_by_step.cpp
+++ b/src/Persistent_cohomology/example/rips_persistence_step_by_step.cpp
@@ -88,6 +88,9 @@ int main(int argc, char * argv[]) {
Simplex_tree st;
// insert the proximity graph in the simplex tree
st.insert_graph(prox_graph);
+ std::cout << "The complex contains " << st.num_simplices() << " simplices \n";
+ std::cout << " and has dimension " << st.dimension() << " \n";
+/*
// expand the graph until dimension dim_max
st.expansion(dim_max);
@@ -112,7 +115,7 @@ int main(int argc, char * argv[]) {
pcoh.output_diagram(out);
out.close();
}
-
+*/
return 0;
}