summaryrefslogtreecommitdiff
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
parent723252b311a7989ef1d4271b3a812ec7d0be05f2 (diff)
doc review: improve reset_filtration documentation
-rw-r--r--src/Simplex_tree/include/gudhi/Simplex_tree.h4
-rw-r--r--src/python/gudhi/simplex_tree.pyx4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/Simplex_tree/include/gudhi/Simplex_tree.h b/src/Simplex_tree/include/gudhi/Simplex_tree.h
index 70ef4c66..5afd0e23 100644
--- a/src/Simplex_tree/include/gudhi/Simplex_tree.h
+++ b/src/Simplex_tree/include/gudhi/Simplex_tree.h
@@ -1668,8 +1668,8 @@ class Simplex_tree {
}
public:
- /** \brief This function resets filtration value from a given dimension. Resets all the Simplex_tree when
- * `min_dim = 0`.
+ /** \brief 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).
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).