From 55c7181126aa7defce38c9b82872d14223d4c1dd Mon Sep 17 00:00:00 2001 From: Gard Spreemann Date: Tue, 7 Feb 2017 17:33:01 +0100 Subject: Initial import of upstream's 1.3.1. --- include/gudhi/Simplex_tree/Simplex_tree_siblings.h | 131 +++++++++++++++++++++ 1 file changed, 131 insertions(+) create mode 100644 include/gudhi/Simplex_tree/Simplex_tree_siblings.h (limited to 'include/gudhi/Simplex_tree/Simplex_tree_siblings.h') diff --git a/include/gudhi/Simplex_tree/Simplex_tree_siblings.h b/include/gudhi/Simplex_tree/Simplex_tree_siblings.h new file mode 100644 index 00000000..1eca7f6f --- /dev/null +++ b/include/gudhi/Simplex_tree/Simplex_tree_siblings.h @@ -0,0 +1,131 @@ +/* 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): Clément Maria + * + * Copyright (C) 2014 INRIA Sophia Antipolis-Méditerranée (France) + * + * 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_SIMPLEX_TREE_SIBLINGS_H_ +#define SIMPLEX_TREE_SIMPLEX_TREE_SIBLINGS_H_ + +#include + +#include + +#include +#include + +namespace Gudhi { + +/* \addtogroup simplex_tree + * Represents a set of node of a Simplex_tree that share the same parent. + * @{ + */ + +/* \brief Data structure to store a set of nodes in a SimplexTree sharing + * the same parent node.*/ +template +class Simplex_tree_siblings { +// private: +// friend SimplexTree; + public: + template friend class Simplex_tree_simplex_vertex_iterator; + template friend class Simplex_tree_boundary_simplex_iterator; + template friend class Simplex_tree_complex_simplex_iterator; + template friend class Simplex_tree_skeleton_simplex_iterator; + + typedef typename SimplexTree::Vertex_handle Vertex_handle; + typedef typename SimplexTree::Filtration_value Filtration_value; + typedef typename SimplexTree::Node Node; + typedef MapContainer Dictionary; + typedef typename MapContainer::iterator Dictionary_it; + + /* Default constructor.*/ + Simplex_tree_siblings() + : oncles_(nullptr), + parent_(-1), + members_() { + } + + /* Constructor with values.*/ + Simplex_tree_siblings(Simplex_tree_siblings * oncles, Vertex_handle parent) + : oncles_(oncles), + parent_(parent), + members_() { + } + + /* \brief Constructor with initialized set of members. + * + * 'members' must be sorted and unique.*/ + template + Simplex_tree_siblings(Simplex_tree_siblings * oncles, Vertex_handle parent, const RandomAccessVertexRange & members) + : oncles_(oncles), + parent_(parent), + members_(boost::container::ordered_unique_range, members.begin(), + members.end()) { + for (auto& map_el : members_) { + map_el.second.assign_children(this); + } + } + + /* + * \brief Inserts a Node in the set of siblings nodes. + * + * If already present, assigns the minimal filtration value + * between input filtration_value and the value already + * present in the node. + */ + void insert(Vertex_handle v, Filtration_value filtration_value) { + auto ins = members_.emplace(v, Node(this, filtration_value)); + if (!ins.second && filtration(ins.first) > filtration_value) + ins.first->second.assign_filtration(filtration_value); + } + + Dictionary_it find(Vertex_handle v) { + return members_.find(v); + } + + Simplex_tree_siblings * oncles() { + return oncles_; + } + + Vertex_handle parent() const { + return parent_; + } + + Dictionary & members() { + return members_; + } + + size_t size() const { + return members_.size(); + } + + void erase(const Dictionary_it iterator) { + members_.erase(iterator); + } + + Simplex_tree_siblings * oncles_; + Vertex_handle parent_; + Dictionary members_; +}; + +/* @} */ // end addtogroup simplex_tree +} // namespace Gudhi + +#endif // SIMPLEX_TREE_SIMPLEX_TREE_SIBLINGS_H_ -- cgit v1.2.3