summaryrefslogtreecommitdiff
path: root/example/Nerve_GIC/CoordGIC.cpp
diff options
context:
space:
mode:
authorGard Spreemann <gspreemann@gmail.com>2018-09-09 05:51:46 +0200
committerGard Spreemann <gspreemann@gmail.com>2018-09-09 05:51:46 +0200
commit75d365e9df3b9c25f48a475a53188668b5cd2951 (patch)
tree3906301decc85aeaedf90e140550f5836a6e7fac /example/Nerve_GIC/CoordGIC.cpp
parent41482b4260b4aff3d6803e340d5c94fbefb9af67 (diff)
parentef5c01b599c6a6b23b1f3e92736ec67a6e62b55f (diff)
Merge branch 'upstream/latest' into dfsg/latest
Diffstat (limited to 'example/Nerve_GIC/CoordGIC.cpp')
-rw-r--r--example/Nerve_GIC/CoordGIC.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/example/Nerve_GIC/CoordGIC.cpp b/example/Nerve_GIC/CoordGIC.cpp
index 73edae18..9889b198 100644
--- a/example/Nerve_GIC/CoordGIC.cpp
+++ b/example/Nerve_GIC/CoordGIC.cpp
@@ -79,10 +79,10 @@ int main(int argc, char **argv) {
// --------------------------------------------
if (verb) {
- std::cout << "Functional GIC is of dimension " << stree.dimension() << " - " << stree.num_simplices()
+ std::cout << "Coordinate GIC is of dimension " << stree.dimension() << " - " << stree.num_simplices()
<< " simplices - " << stree.num_vertices() << " vertices." << std::endl;
- std::cout << "Iterator on functional GIC simplices" << std::endl;
+ std::cout << "Iterator on coordinate GIC simplices" << std::endl;
for (auto f_simplex : stree.filtration_simplex_range()) {
for (auto vertex : stree.simplex_vertex_range(f_simplex)) {
std::cout << vertex << " ";