summaryrefslogtreecommitdiff
path: root/src/Nerve_GIC/example/Nerve.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Nerve_GIC/example/Nerve.cpp')
-rw-r--r--src/Nerve_GIC/example/Nerve.cpp24
1 files changed, 13 insertions, 11 deletions
diff --git a/src/Nerve_GIC/example/Nerve.cpp b/src/Nerve_GIC/example/Nerve.cpp
index 71f12f5d..598ecc03 100644
--- a/src/Nerve_GIC/example/Nerve.cpp
+++ b/src/Nerve_GIC/example/Nerve.cpp
@@ -22,7 +22,7 @@
#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 coordinate resolution gain [--v] \n";
std::cerr << " i.e.: " << progName << " ../../data/points/human.off 2 10 0.3 --v \n";
@@ -38,7 +38,8 @@ int main(int argc, char **argv) {
int coord = atoi(argv[2]);
int resolution = atoi(argv[3]);
double gain = atof(argv[4]);
- bool verb = 0; if(argc == 6) verb = 1;
+ bool verb = 0;
+ if (argc == 6) verb = 1;
// --------------------------------
// Init of a Nerve from an OFF file
@@ -49,32 +50,33 @@ int main(int argc, char **argv) {
bool check = SC.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 {
SC.set_type("Nerve");
SC.set_color_from_coordinate(coord);
SC.set_function_from_coordinate(coord);
SC.set_graph_from_OFF();
- SC.set_resolution_with_interval_number(resolution); SC.set_gain(gain);
+ SC.set_resolution_with_interval_number(resolution);
+ SC.set_gain(gain);
SC.set_cover_from_function();
SC.find_simplices();
SC.write_info();
- Gudhi::Simplex_tree<> stree; SC.create_complex(stree);
+ Gudhi::Simplex_tree<> stree;
+ SC.create_complex(stree);
// ----------------------------------------------------------------------------
// Display information about the graph induced complex
// ----------------------------------------------------------------------------
- if(verb){
- std::cout << "Nerve is of dimension " << stree.dimension() <<
- " - " << stree.num_simplices() << " simplices - " <<
- stree.num_vertices() << " vertices." << std::endl;
+ if (verb) {
+ std::cout << "Nerve is of dimension " << stree.dimension() << " - " << stree.num_simplices() << " simplices - "
+ << stree.num_vertices() << " vertices." << std::endl;
std::cout << "Iterator on Nerve simplices" << std::endl;
for (auto f_simplex : stree.filtration_simplex_range()) {