summaryrefslogtreecommitdiff
path: root/src/Nerve_GIC/example/VoronoiGIC.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Nerve_GIC/example/VoronoiGIC.cpp')
-rw-r--r--src/Nerve_GIC/example/VoronoiGIC.cpp25
1 files changed, 13 insertions, 12 deletions
diff --git a/src/Nerve_GIC/example/VoronoiGIC.cpp b/src/Nerve_GIC/example/VoronoiGIC.cpp
index 8ce64819..ef4f663c 100644
--- a/src/Nerve_GIC/example/VoronoiGIC.cpp
+++ b/src/Nerve_GIC/example/VoronoiGIC.cpp
@@ -22,10 +22,10 @@
#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 N [--v] \n";
- std::cerr << " i.e.: " << progName << " ../../../../data/points/human.off 100 --v \n";
+ std::cerr << " i.e.: " << progName << " ../../data/points/human.off 100 --v \n";
exit(-1); // ----- >>
}
@@ -36,7 +36,8 @@ int main(int argc, char **argv) {
std::string off_file_name(argv[1]);
int m = atoi(argv[2]);
- bool verb = 0; if(argc == 4) verb = 1;
+ bool verb = 0;
+ if (argc == 4) verb = 1;
// ----------------------------------------------------------------------------
// Init of a graph induced complex from an OFF file
@@ -47,30 +48,30 @@ 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();
GIC.set_graph_from_OFF();
- GIC.set_cover_from_Voronoi(Gudhi::Euclidean_distance(),m);
+ GIC.set_cover_from_Voronoi(Gudhi::Euclidean_distance(), m);
GIC.find_simplices();
GIC.plot_OFF();
- Gudhi::Simplex_tree<> stree; GIC.create_complex(stree);
+ Gudhi::Simplex_tree<> stree;
+ GIC.create_complex(stree);
// ----------------------------------------------------------------------------
// Display information about the graph induced complex
// ----------------------------------------------------------------------------
- if(verb){
- std::cout << "Graph induced complex is of dimension " << stree.dimension() <<
- " - " << stree.num_simplices() << " simplices - " <<
- stree.num_vertices() << " vertices." << std::endl;
+ if (verb) {
+ std::cout << "Graph induced complex is of dimension " << stree.dimension() << " - " << stree.num_simplices()
+ << " simplices - " << stree.num_vertices() << " vertices." << std::endl;
std::cout << "Iterator on graph induced complex simplices" << std::endl;
for (auto f_simplex : stree.filtration_simplex_range()) {