summaryrefslogtreecommitdiff
path: root/src/Nerve_GIC/example/GIC.cpp
diff options
context:
space:
mode:
authormcarrier <mcarrier@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2017-07-28 14:33:44 +0000
committermcarrier <mcarrier@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2017-07-28 14:33:44 +0000
commit99bff40a1028f8848cdcdc76d8f53ef3b9b9c43d (patch)
treecf324f7ccc7f64744a885df289162f52265ead21 /src/Nerve_GIC/example/GIC.cpp
parentd1fd9723fc49ee430203166fca71ea20b96f6b7b (diff)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/Nerve_GIC@2598 636b058d-ea47-450e-bf9e-a15bfbe3eedb
Former-commit-id: 1624f24a6f87ac092e1761c9778741102fb37a3c
Diffstat (limited to 'src/Nerve_GIC/example/GIC.cpp')
-rw-r--r--src/Nerve_GIC/example/GIC.cpp19
1 files changed, 8 insertions, 11 deletions
diff --git a/src/Nerve_GIC/example/GIC.cpp b/src/Nerve_GIC/example/GIC.cpp
index aba0927d..6e5c5ca7 100644
--- a/src/Nerve_GIC/example/GIC.cpp
+++ b/src/Nerve_GIC/example/GIC.cpp
@@ -30,7 +30,7 @@ void usage(int nbArgs, char * const progName) {
}
int main(int argc, char **argv) {
- if ((argc != 6) && (argc != 7)) usage(argc, (argv[0] - 1));
+ if ((argc != 6) && (argc != 7)) usage(argc, argv[0]);
using Point = std::vector<float>;
@@ -58,33 +58,30 @@ int main(int argc, char **argv) {
GIC.set_graph_from_rips(threshold, Gudhi::Euclidean_distance());
- GIC.set_resolution_double(resolution); GIC.set_gain(gain);
- GIC.set_cover_from_function(1);
+ GIC.set_resolution_with_interval_length(resolution); GIC.set_gain(gain);
+ GIC.set_cover_from_function();
GIC.find_GIC_simplices();
- GIC.plot_txt();
+ GIC.plot_TXT_for_KeplerMapper();
Gudhi::graph_induced_complex::Simplex_tree stree; GIC.create_complex(stree);
- std::streambuf* streambufffer = std::cout.rdbuf();
- std::ostream output_stream(streambufffer);
-
// ----------------------------------------------------------------------------
// Display information about the graph induced complex
// ----------------------------------------------------------------------------
if(verb){
- output_stream << "Graph induced complex is of dimension " << stree.dimension() <<
+ std::cout << "Graph induced complex is of dimension " << stree.dimension() <<
" - " << stree.num_simplices() << " simplices - " <<
stree.num_vertices() << " vertices." << std::endl;
- output_stream << "Iterator on graph induced complex simplices" << std::endl;
+ std::cout << "Iterator on graph induced complex simplices" << std::endl;
for (auto f_simplex : stree.filtration_simplex_range()) {
for (auto vertex : stree.simplex_vertex_range(f_simplex)) {
- output_stream << vertex << " ";
+ std::cout << vertex << " ";
}
- output_stream << std::endl;
+ std::cout << std::endl;
}
}
}