#include <gudhi/Skeleton_blocker.h>
#include <gudhi/Clock.h>
#include <stdio.h>
#include <stdlib.h>
#include <string>
#include <fstream>
#include <sstream>
typedef Complex::Vertex_handle Vertex_handle;
typedef Complex::Simplex Simplex;
Complex build_complete_complex(int n) {
Complex complex;
for (int i = 0; i < n; i++)
for (int i = 0; i < n; i++)
for (int j = 0; j < i; j++)
complex.add_edge_without_blockers(Vertex_handle(i), Vertex_handle(j));
return complex;
}
int main(int argc, char *argv[]) {
Gudhi::Clock skbl_chrono("Time to build the complete complex, enumerate simplices and Euler Characteristic");
const int n = 15;
Complex complex(build_complete_complex(n));
unsigned num_vertices = 0;
for (auto v : complex.vertex_range()) {
std::cout << "Vertex " << v << std::endl;
++num_vertices;
}
auto edges = complex.edge_range();
unsigned num_edges = std::distance(edges.begin(), edges.end());
unsigned euler = 0;
unsigned num_simplices = 0;
for (const Simplex & s : complex.complex_simplex_range()) {
++num_simplices;
if (s.dimension() % 2 == 0)
euler += 1;
else
euler -= 1;
}
std::cout << "Saw " << num_vertices << " vertices, " << num_edges << " edges and " << num_simplices << " simplices"
<< std::endl;
std::cout << "The Euler Characteristic is " << euler << std::endl;
std::cout << skbl_chrono;
return EXIT_SUCCESS;
}