summaryrefslogtreecommitdiff
path: root/src/python/gudhi/simplex_tree.pyx
diff options
context:
space:
mode:
authorROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-09-28 09:44:43 +0200
committerROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-09-28 09:44:43 +0200
commite64dd4039e6dff35322ff01a8aa82d79c77e9c8e (patch)
treeee80810e04548ed0f3e40ba40df81c2ee30a152f /src/python/gudhi/simplex_tree.pyx
parent723252b311a7989ef1d4271b3a812ec7d0be05f2 (diff)
doc review: improve reset_filtration documentation
Diffstat (limited to 'src/python/gudhi/simplex_tree.pyx')
-rw-r--r--src/python/gudhi/simplex_tree.pyx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/python/gudhi/simplex_tree.pyx b/src/python/gudhi/simplex_tree.pyx
index f28990cc..910711a9 100644
--- a/src/python/gudhi/simplex_tree.pyx
+++ b/src/python/gudhi/simplex_tree.pyx
@@ -359,8 +359,8 @@ cdef class SimplexTree:
return self.get_ptr().make_filtration_non_decreasing()
def reset_filtration(self, filtration, min_dim = 0):
- """This function resets filtration value from a given dimension. Resets all the simplex tree when
- `min_dim = 0`.
+ """This function resets the filtration value of all the simplices of dimension at least min_dim. Resets all the
+ simplex tree when `min_dim = 0`.
`reset_filtration` may break the filtration property with `min_dim > 0`, and it is the user's responsibility to
make it a valid filtration (using a large enough `filt_value`, or calling `make_filtration_non_decreasing`
afterwards for instance).