From 69e3499fb9ecae20a1b9904cac83bbc605972c50 Mon Sep 17 00:00:00 2001 From: vrouvrea Date: Thu, 16 Nov 2017 20:52:37 +0000 Subject: Apply google code conventions for cpplint git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/Nerve_GIC@2898 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 2f82ddf869dc95ec33c6cea825ee24cd1a849c4b --- src/Nerve_GIC/example/CoordGIC.cpp | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) (limited to 'src/Nerve_GIC/example/CoordGIC.cpp') diff --git a/src/Nerve_GIC/example/CoordGIC.cpp b/src/Nerve_GIC/example/CoordGIC.cpp index f23e3f55..e7a68e07 100644 --- a/src/Nerve_GIC/example/CoordGIC.cpp +++ b/src/Nerve_GIC/example/CoordGIC.cpp @@ -22,10 +22,10 @@ #include -void usage(int nbArgs, char * const progName) { +void usage(int nbArgs, char *const progName) { std::cerr << "Error: Number of arguments (" << nbArgs << ") is not correct\n"; std::cerr << "Usage: " << progName << " filename.off coordinate [--v] \n"; - std::cerr << " i.e.: " << progName << " ../../../../data/points/human.off 2 --v \n"; + std::cerr << " i.e.: " << progName << " ../../data/points/human.off 2 --v \n"; exit(-1); // ----- >> } @@ -36,7 +36,8 @@ int main(int argc, char **argv) { std::string off_file_name(argv[1]); int coord = atoi(argv[2]); - bool verb = 0; if(argc == 4) verb = 1; + bool verb = 0; + if (argc == 4) verb = 1; // ----------------------------------------- // Init of a functional GIC from an OFF file @@ -47,32 +48,33 @@ int main(int argc, char **argv) { bool check = GIC.read_point_cloud(off_file_name); - if(!check) std::cout << "Incorrect OFF file." << std::endl; - else{ - + if (!check) { + std::cout << "Incorrect OFF file." << std::endl; + } else { GIC.set_type("GIC"); GIC.set_color_from_coordinate(coord); GIC.set_function_from_coordinate(coord); GIC.set_graph_from_automatic_rips(Gudhi::Euclidean_distance()); - GIC.set_automatic_resolution(); GIC.set_gain(); + GIC.set_automatic_resolution(); + GIC.set_gain(); GIC.set_cover_from_function(); GIC.find_simplices(); GIC.plot_DOT(); - Gudhi::Simplex_tree<> stree; GIC.create_complex(stree); + Gudhi::Simplex_tree<> stree; + GIC.create_complex(stree); // -------------------------------------------- // Display information about the functional GIC // -------------------------------------------- - if(verb){ - std::cout << "Functional GIC is of dimension " << stree.dimension() << - " - " << stree.num_simplices() << " simplices - " << - stree.num_vertices() << " vertices." << std::endl; + if (verb) { + std::cout << "Functional 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; for (auto f_simplex : stree.filtration_simplex_range()) { -- cgit v1.2.3