#include <gudhi/Simplex_tree.h>
#include <iostream>
#include <utility>
#include <vector>
using typeVectorVertex = std::vector<Vertex_handle>;
using typePairSimplexBool = std::pair<Simplex_tree::Simplex_handle, bool>;
int main(int argc, char* const argv[]) {
const Filtration_value FIRST_FILTRATION_VALUE = 0.1;
const Filtration_value SECOND_FILTRATION_VALUE = 0.2;
const Filtration_value THIRD_FILTRATION_VALUE = 0.3;
const Filtration_value FOURTH_FILTRATION_VALUE = 0.4;
std::clog << "********************************************************************" << std::endl;
std::clog << "EXAMPLE OF SIMPLE INSERTION" << std::endl;
Simplex_tree simplexTree;
std::clog << " * INSERT 0" << std::endl;
typeVectorVertex firstSimplexVector = {0};
typePairSimplexBool returnValue =
simplexTree.
insert_simplex(firstSimplexVector, Filtration_value(FIRST_FILTRATION_VALUE));
if (returnValue.second == true) {
std::clog << " + 0 INSERTED" << std::endl;
} else {
std::clog << " - 0 NOT INSERTED" << std::endl;
}
std::clog << " * INSERT 1" << std::endl;
typeVectorVertex secondSimplexVector = {1};
returnValue = simplexTree.
insert_simplex(secondSimplexVector, Filtration_value(FIRST_FILTRATION_VALUE));
if (returnValue.second == true) {
std::clog << " + 1 INSERTED" << std::endl;
} else {
std::clog << " - 1 NOT INSERTED" << std::endl;
}
std::clog << " * INSERT (0,1)" << std::endl;
typeVectorVertex thirdSimplexVector = {0, 1};
returnValue = simplexTree.
insert_simplex(thirdSimplexVector, Filtration_value(SECOND_FILTRATION_VALUE));
if (returnValue.second == true) {
std::clog << " + (0,1) INSERTED" << std::endl;
} else {
std::clog << " - (0,1) NOT INSERTED" << std::endl;
}
std::clog << " * INSERT 2" << std::endl;
typeVectorVertex fourthSimplexVector = {2};
returnValue = simplexTree.
insert_simplex(fourthSimplexVector, Filtration_value(FIRST_FILTRATION_VALUE));
if (returnValue.second == true) {
std::clog << " + 2 INSERTED" << std::endl;
} else {
std::clog << " - 2 NOT INSERTED" << std::endl;
}
std::clog << " * INSERT (2,0)" << std::endl;
typeVectorVertex fifthSimplexVector = {2, 0};
returnValue = simplexTree.
insert_simplex(fifthSimplexVector, Filtration_value(SECOND_FILTRATION_VALUE));
if (returnValue.second == true) {
std::clog << " + (2,0) INSERTED" << std::endl;
} else {
std::clog << " - (2,0) NOT INSERTED" << std::endl;
}
std::clog << " * INSERT (2,1)" << std::endl;
typeVectorVertex sixthSimplexVector = {2, 1};
returnValue = simplexTree.
insert_simplex(sixthSimplexVector, Filtration_value(SECOND_FILTRATION_VALUE));
if (returnValue.second == true) {
std::clog << " + (2,1) INSERTED" << std::endl;
} else {
std::clog << " - (2,1) NOT INSERTED" << std::endl;
}
std::clog << " * INSERT (2,1,0)" << std::endl;
typeVectorVertex seventhSimplexVector = {2, 1, 0};
returnValue = simplexTree.
insert_simplex(seventhSimplexVector, Filtration_value(THIRD_FILTRATION_VALUE));
if (returnValue.second == true) {
std::clog << " + (2,1,0) INSERTED" << std::endl;
} else {
std::clog << " - (2,1,0) NOT INSERTED" << std::endl;
}
std::clog << " * INSERT 3" << std::endl;
typeVectorVertex eighthSimplexVector = {3};
returnValue = simplexTree.
insert_simplex(eighthSimplexVector, Filtration_value(FIRST_FILTRATION_VALUE));
if (returnValue.second == true) {
std::clog << " + 3 INSERTED" << std::endl;
} else {
std::clog << " - 3 NOT INSERTED" << std::endl;
}
std::clog << " * INSERT (3,0)" << std::endl;
typeVectorVertex ninethSimplexVector = {3, 0};
returnValue = simplexTree.
insert_simplex(ninethSimplexVector, Filtration_value(SECOND_FILTRATION_VALUE));
if (returnValue.second == true) {
std::clog << " + (3,0) INSERTED" << std::endl;
} else {
std::clog << " - (3,0) NOT INSERTED" << std::endl;
}
std::clog << " * INSERT 0 (already inserted)" << std::endl;
typeVectorVertex tenthSimplexVector = {0};
returnValue = simplexTree.
insert_simplex(tenthSimplexVector, Filtration_value(FOURTH_FILTRATION_VALUE));
if (returnValue.second == true) {
std::clog << " + 0 INSERTED" << std::endl;
} else {
std::clog << " - 0 NOT INSERTED" << std::endl;
}
std::clog << " * INSERT (2,1,0) (already inserted)" << std::endl;
typeVectorVertex eleventhSimplexVector = {2, 1, 0};
returnValue = simplexTree.
insert_simplex(eleventhSimplexVector, Filtration_value(FOURTH_FILTRATION_VALUE));
if (returnValue.second == true) {
std::clog << " + (2,1,0) INSERTED" << std::endl;
} else {
std::clog << " - (2,1,0) NOT INSERTED" << std::endl;
}
std::clog << "********************************************************************\n";
std::clog <<
"* The complex contains " << simplexTree.
num_simplices() <<
" simplices\n";
std::clog <<
" - dimension " << simplexTree.
dimension() <<
"\n";
std::clog << "* Iterator on Simplices in the filtration, with [filtration value]:\n";
std::clog << " "
<<
"[" << simplexTree.
filtration(f_simplex) <<
"] ";
std::clog << std::endl;
}
std::clog << "**************IS THE SIMPLEX {1} IN THE SIMPLEX TREE ?\n";
std::clog << "***+ YES IT IS!\n";
else
std::clog << "***- NO IT ISN'T\n";
typeVectorVertex unknownSimplexVector = {15};
simplexFound = simplexTree.
find(unknownSimplexVector);
std::clog << "**************IS THE SIMPLEX {15} IN THE SIMPLEX TREE ?\n";
std::clog << "***+ YES IT IS!\n";
else
std::clog << "***- NO IT ISN'T\n";
simplexFound = simplexTree.
find(fifthSimplexVector);
std::clog << "**************IS THE SIMPLEX {2,0} IN THE SIMPLEX TREE ?\n";
std::clog << "***+ YES IT IS!\n";
else
std::clog << "***- NO IT ISN'T\n";
typeVectorVertex otherSimplexVector = {1, 15};
simplexFound = simplexTree.
find(otherSimplexVector);
std::clog << "**************IS THE SIMPLEX {15,1} IN THE SIMPLEX TREE ?\n";
std::clog << "***+ YES IT IS!\n";
else
std::clog << "***- NO IT ISN'T\n";
typeVectorVertex invSimplexVector = {1, 2, 0};
simplexFound = simplexTree.
find(invSimplexVector);
std::clog << "**************IS THE SIMPLEX {1,2,0} IN THE SIMPLEX TREE ?\n";
std::clog << "***+ YES IT IS!\n";
else
std::clog << "***- NO IT ISN'T\n";
simplexFound = simplexTree.
find({0, 1});
std::clog << "**************IS THE SIMPLEX {0,1} IN THE SIMPLEX TREE ?\n";
std::clog << "***+ YES IT IS!\n";
else
std::clog << "***- NO IT ISN'T\n";
std::clog << "**************COFACES OF {0,1} IN CODIMENSION 1 ARE\n";
std::clog << std::endl;
}
std::clog << "**************STARS OF {0,1} ARE\n";
std::clog << std::endl;
}
std::clog << "**************BOUNDARIES OF {0,1,2} ARE\n";
std::clog << std::endl;
}
return 0;
}
Simplex Tree data structure for representing simplicial complexes.
Definition Simplex_tree.h:101
Options::Filtration_value Filtration_value
Definition Simplex_tree.h:108
Simplex_vertex_range simplex_vertex_range(Simplex_handle sh) const
Returns a range over the vertices of a simplex.
Definition Simplex_tree.h:407
Cofaces_simplex_range star_simplex_range(const Simplex_handle simplex) const
Compute the star of a n simplex.
Definition Simplex_tree.h:1631
Dictionary::const_iterator Simplex_handle
Definition Simplex_tree.h:212
static const Filtration_value & filtration(Simplex_handle sh)
Returns the filtration value of a simplex.
Definition Simplex_tree.h:765
Options::Vertex_handle Vertex_handle
Definition Simplex_tree.h:122
Filtration_simplex_range const & filtration_simplex_range(Indexing_tag=Indexing_tag()) const
Returns a range over the simplices of the simplicial complex, in the order of the filtration.
Definition Simplex_tree.h:396
Cofaces_simplex_range cofaces_simplex_range(const Simplex_handle simplex, int codimension) const
Compute the cofaces of a n simplex.
Definition Simplex_tree.h:1645
size_t num_simplices() const
Returns the number of simplices in the simplex_tree.
Definition Simplex_tree.h:829
Simplex_handle find(const InputVertexRange &s) const
Given a range of Vertex_handles, returns the Simplex_handle of the simplex in the simplicial complex ...
Definition Simplex_tree.h:937
std::pair< Simplex_handle, bool > insert_simplex(const InputVertexRange &simplex, const Filtration_value &filtration=Filtration_value())
Insert a simplex, represented by a range of Vertex_handles, in the simplicial complex.
Definition Simplex_tree.h:1109
static Simplex_handle null_simplex()
Returns a Simplex_handle different from all Simplex_handles associated to the simplices in the simpli...
Definition Simplex_tree.h:786
Boundary_simplex_range boundary_simplex_range(SimplexHandle sh) const
Returns a range over the simplices of the boundary of a simplex.
Definition Simplex_tree.h:428
Graph simplicial complex methods.