summaryrefslogtreecommitdiff
path: root/src/python
diff options
context:
space:
mode:
authorROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-11-04 07:40:40 +0100
committerROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-11-04 07:40:40 +0100
commit1d471d3914045b9df7d0f48cee4c140dcf2a7b52 (patch)
treebd62d271e21057309326b7ca26a8c72e25ad5810 /src/python
parent4d26e7220bdd9a3f95beacd8a33b0fbda461ebfa (diff)
parent5cb101b209aa22a3aceae9aeee3a13b77a2de734 (diff)
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'src/python')
-rw-r--r--src/python/gudhi/simplex_tree.pyx2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/python/gudhi/simplex_tree.pyx b/src/python/gudhi/simplex_tree.pyx
index c671da56..813dc5c2 100644
--- a/src/python/gudhi/simplex_tree.pyx
+++ b/src/python/gudhi/simplex_tree.pyx
@@ -287,6 +287,8 @@ cdef class SimplexTree:
def get_boundaries(self, simplex):
"""This function returns a generator with the boundaries of a given N-simplex.
+ If you do not need the filtration values, the boundary can also be obtained as
+ :code:`itertools.combinations(simplex,len(simplex)-1)`.
:param simplex: The N-simplex, represented by a list of vertex.
:type simplex: list of int.