summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/cython/cython/simplex_tree.pyx7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/cython/cython/simplex_tree.pyx b/src/cython/cython/simplex_tree.pyx
index 4bcda1cb..bb6fd1db 100644
--- a/src/cython/cython/simplex_tree.pyx
+++ b/src/cython/cython/simplex_tree.pyx
@@ -169,6 +169,13 @@ cdef class SimplexTree:
def set_dimension(self, dimension):
"""This function sets the dimension of the simplicial complex.
+ insert and remove_maximal_simplex functions do not update dimension
+ value of the `SimplexTree`.
+
+ `AlphaComplex`, `RipsComplex`, `TangentialComplex` and `WitnessComplex`
+ automatically sets the correct dimension in their `create_simplex_tree`
+ functions.
+
:param dimension: The new dimension value.
:type dimension: int.
"""