/* This file is part of the Gudhi Library. The Gudhi library * (Geometric Understanding in Higher Dimensions) is a generic C++ * library for computational topology. * * Author(s): Vincent Rouvreau * * Copyright (C) 2016 INRIA * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #ifndef SIMPLEX_TREE_INTERFACE_H #define SIMPLEX_TREE_INTERFACE_H #include #include #include #include #include "Persistent_cohomology_interface.h" #include #include #include // std::pair namespace Gudhi { template class Simplex_tree_interface : public Simplex_tree { public: using Base = Simplex_tree; using Filtration_value = typename Base::Filtration_value; using Vertex_handle = typename Base::Vertex_handle; using Simplex_handle = typename Base::Simplex_handle; using Insertion_result = typename std::pair; using Simplex = std::vector; using Complex = std::vector>; public: bool find_simplex(const Simplex& vh) { return (Base::find(vh) != Base::null_simplex()); } bool insert_simplex_and_subfaces(const Simplex& simplex, Filtration_value filtration = 0) { Insertion_result result = Base::insert_simplex_and_subfaces(simplex, filtration); Base::initialize_filtration(); return (result.second); } // Do not interface this function, only used in strong witness interface for complex creation bool insert_simplex_and_subfaces(const std::vector& complex, Filtration_value filtration = 0) { Insertion_result result = Base::insert_simplex_and_subfaces(complex, filtration); Base::initialize_filtration(); return (result.second); } Filtration_value simplex_filtration(const Simplex& simplex) { return Base::filtration(Base::find(simplex)); } void remove_maximal_simplex(const Simplex& simplex) { Base::remove_maximal_simplex(Base::find(simplex)); Base::initialize_filtration(); } Complex get_filtered_tree() { Complex filtered_tree; for (auto f_simplex : Base::filtration_simplex_range()) { Simplex simplex; for (auto vertex : Base::simplex_vertex_range(f_simplex)) { simplex.insert(simplex.begin(), vertex); } filtered_tree.push_back(std::make_pair(simplex, Base::filtration(f_simplex))); } return filtered_tree; } Complex get_skeleton_tree(int dimension) { Complex skeleton_tree; for (auto f_simplex : Base::skeleton_simplex_range(dimension)) { Simplex simplex; for (auto vertex : Base::simplex_vertex_range(f_simplex)) { simplex.insert(simplex.begin(), vertex); } skeleton_tree.push_back(std::make_pair(simplex, Base::filtration(f_simplex))); } return skeleton_tree; } Complex get_stars(const Simplex& simplex) { Complex stars; for (auto f_simplex : Base::star_simplex_range(Base::find(simplex))) { Simplex simplex_star; for (auto vertex : Base::simplex_vertex_range(f_simplex)) { std::cout << vertex << " "; simplex_star.insert(simplex_star.begin(), vertex); } std::cout << std::endl; stars.push_back(std::make_pair(simplex_star, Base::filtration(f_simplex))); } return stars; } Complex get_cofaces(const Simplex& simplex, int dimension) { Complex cofaces; for (auto f_simplex : Base::cofaces_simplex_range(Base::find(simplex), dimension)) { Simplex simplex_coface; for (auto vertex : Base::simplex_vertex_range(f_simplex)) { std::cout << vertex << " "; simplex_coface.insert(simplex_coface.begin(), vertex); } std::cout << std::endl; cofaces.push_back(std::make_pair(simplex_coface, Base::filtration(f_simplex))); } return cofaces; } void create_persistence(Gudhi::Persistent_cohomology_interface* pcoh) { pcoh = new Gudhi::Persistent_cohomology_interface(*this); } }; } // namespace Gudhi #endif // SIMPLEX_TREE_INTERFACE_H