From 4714ef44a23b156c16b04550c7b519cf456cb4c2 Mon Sep 17 00:00:00 2001 From: mcarrier Date: Sat, 21 Oct 2017 00:15:29 +0000 Subject: git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/Nerve_GIC@2799 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: e41f8d57ca5e3e6ab90020f716d6362c73ee48da --- src/Nerve_GIC/example/Nerve.cpp | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) (limited to 'src/Nerve_GIC/example/Nerve.cpp') diff --git a/src/Nerve_GIC/example/Nerve.cpp b/src/Nerve_GIC/example/Nerve.cpp index e863b48b..cecc45c5 100644 --- a/src/Nerve_GIC/example/Nerve.cpp +++ b/src/Nerve_GIC/example/Nerve.cpp @@ -39,33 +39,34 @@ int main(int argc, char **argv) { int resolution = atoi(argv[3]); double gain = atof(argv[4]); bool verb = 0; if(argc == 6) verb = 1; - //int mask = 0; // -------------------------------- // Init of a Nerve from an OFF file // -------------------------------- - Gudhi::graph_induced_complex::Graph_induced_complex GIC; - GIC.set_verbose(verb); + Gudhi::graph_induced_complex::Graph_induced_complex SC; + SC.set_verbose(verb); - bool check = GIC.read_point_cloud(off_file_name); + bool check = SC.read_point_cloud(off_file_name); if(!check) std::cout << "Incorrect OFF file." << std::endl; else{ - GIC.set_color_from_coordinate(coord); - GIC.set_function_from_coordinate(coord); + SC.set_type("Nerve"); - GIC.set_graph_from_OFF(); + SC.set_color_from_coordinate(coord); + SC.set_function_from_coordinate(coord); - GIC.set_resolution_with_interval_number(resolution); GIC.set_gain(gain); - GIC.set_cover_from_function(); + SC.set_graph_from_OFF(); - GIC.find_Nerve_simplices(); + SC.set_resolution_with_interval_number(resolution); SC.set_gain(gain); + SC.set_cover_from_function(); - GIC.plot_TXT(); + SC.find_simplices(); - Gudhi::Simplex_tree<> stree; GIC.create_complex(stree); + SC.write_info(); + + Gudhi::Simplex_tree<> stree; SC.create_complex(stree); // ---------------------------------------------------------------------------- // Display information about the graph induced complex -- cgit v1.2.3