#include <gudhi/Skeleton_blocker.h>
#include <stdio.h>
#include <stdlib.h>
#include <string>
#include <fstream>
#include <sstream>
typedef Complex::Root_vertex_handle Root_vertex_handle;
typedef Complex::Simplex Simplex;
int main(int argc, char *argv[]) {
Complex complex;
complex.add_simplex(tetrahedron);
std::clog << "complex:" << complex.to_string() << std::endl;
std::clog << "link:" << link.to_string() << std::endl;
for (int i = 0; i < 5; ++i)
std::clog <<
"link.contains_vertex(Vertex_handle(" << i <<
")):" << link.contains_vertex(
Vertex_handle(i)) <<
std::endl;
std::clog << std::endl;
for (int i = 0; i < 5; ++i)
std::clog << "link.contains_vertex(Root_vertex_handle(" << i << ")):" <<
link.contains_vertex(Root_vertex_handle(i)) << std::endl;
return EXIT_SUCCESS;
}