summaryrefslogtreecommitdiff
path: root/src/Nerve_GIC/example/FuncGIC.cpp
diff options
context:
space:
mode:
authorvrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2017-11-16 20:52:37 +0000
committervrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2017-11-16 20:52:37 +0000
commit69e3499fb9ecae20a1b9904cac83bbc605972c50 (patch)
tree9d4a0a76358b5f3b05f757a9f42958c2a0a8a8ac /src/Nerve_GIC/example/FuncGIC.cpp
parent4036005c0302fa7ce72ef2966bda73049da6be41 (diff)
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
Diffstat (limited to 'src/Nerve_GIC/example/FuncGIC.cpp')
-rw-r--r--src/Nerve_GIC/example/FuncGIC.cpp27
1 files changed, 15 insertions, 12 deletions
diff --git a/src/Nerve_GIC/example/FuncGIC.cpp b/src/Nerve_GIC/example/FuncGIC.cpp
index 1601ddab..2de8c021 100644
--- a/src/Nerve_GIC/example/FuncGIC.cpp
+++ b/src/Nerve_GIC/example/FuncGIC.cpp
@@ -22,10 +22,11 @@
#include <gudhi/GIC.h>
-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 function [--v] \n";
- std::cerr << " i.e.: " << progName << " ../../../../data/points/COIL_database/lucky_cat.off ../../../../data/points/COIL_database/lucky_cat_PCA1 --v \n";
+ std::cerr << " i.e.: " << progName << " ../../data/points/COIL_database/lucky_cat.off "
+ "../../data/points/COIL_database/lucky_cat_PCA1 --v \n";
exit(-1); // ----- >>
}
@@ -36,7 +37,8 @@ int main(int argc, char **argv) {
std::string off_file_name(argv[1]);
std::string func_file_name = 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 +49,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_file(func_file_name);
GIC.set_function_from_file(func_file_name);
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()) {