#include <gudhi/Simplex_tree.h>
#include <gudhi/Persistent_cohomology.h>
#include <iostream>
#include <vector>
#include <cstdint>
static const bool store_filtration = false;
static const bool store_key = true;
typedef short Vertex_handle;
typedef std::uint8_t Simplex_key;
};
int main() {
const short triangle012[] = {0, 1, 2};
const short edge03[] = {0, 3};
const short edge13[] = {1, 3};
const short vertex4[] = {4};
std::cout << std::endl;
std::cout << "The Betti numbers are : ";
std::cout <<
"b" << i <<
" = " << pcoh.
betti_number(i) <<
" ; ";
std::cout << std::endl;
}