summaryrefslogtreecommitdiff
path: root/src/Toplex_map
diff options
context:
space:
mode:
authorvrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2018-11-16 09:02:08 +0000
committervrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2018-11-16 09:02:08 +0000
commitd444c2da6e5081018784a50fab00cb81b772a3e0 (patch)
tree74f2b893b2cf44667676e341077ae44aa5335173 /src/Toplex_map
parent11b1de2771b060fb286bf428ac081c07ff73e8ec (diff)
Doc review : Simplicial complex terms instead of toplex map ones.
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/toplex_map@3985 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: b8debf06602f03185929ac7b33e2b49ea69deaad
Diffstat (limited to 'src/Toplex_map')
-rw-r--r--src/Toplex_map/include/gudhi/Toplex_map.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Toplex_map/include/gudhi/Toplex_map.h b/src/Toplex_map/include/gudhi/Toplex_map.h
index 3da505f8..a46961c6 100644
--- a/src/Toplex_map/include/gudhi/Toplex_map.h
+++ b/src/Toplex_map/include/gudhi/Toplex_map.h
@@ -61,7 +61,7 @@ class Toplex_map {
using Simplex_ptr_set = std::unordered_set<Toplex_map::Simplex_ptr, Sptr_hash, Sptr_equal>;
/** \brief Adds the given simplex to the complex.
- * Nothing happens if the simplex has a coface in the complex. */
+ * Nothing happens if the simplex has a coface in the complex (i.e. it is a face of one of the toplices). */
template <typename Input_vertex_range>
void insert_simplex(const Input_vertex_range& vertex_range);
@@ -108,7 +108,7 @@ class Toplex_map {
std::set<Toplex_map::Vertex> unitary_collapse(const Toplex_map::Vertex k, const Toplex_map::Vertex d);
/** Adds the given simplex to the complex.
- * The simplex must not have neither maximal face nor coface in the complex. */
+ * The simplex must not be in the complex already, and it must not contain one of the current toplices. */
template <typename Input_vertex_range>
void insert_independent_simplex(const Input_vertex_range& vertex_range);