summaryrefslogtreecommitdiff
path: root/src/Simplex_tree
diff options
context:
space:
mode:
authorvrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2017-11-06 12:33:36 +0000
committervrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2017-11-06 12:33:36 +0000
commit8659c97eff5e4ef0321509abe36f8baa78c2f35b (patch)
tree3f55b33f307c4be291288bd7575b9c4f56e70284 /src/Simplex_tree
parentb3e32d1c1a499b8147b80c7ce491f1624e1384a0 (diff)
doc review : upper_bond_dimension to be replaced with upper_bound_dimension
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/ST_automatic_dimension_set@2829 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: ca70d79176d406f63c3372dd7e062f108365b99f
Diffstat (limited to 'src/Simplex_tree')
-rw-r--r--src/Simplex_tree/include/gudhi/Simplex_tree.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Simplex_tree/include/gudhi/Simplex_tree.h b/src/Simplex_tree/include/gudhi/Simplex_tree.h
index b2d380ea..03dfce70 100644
--- a/src/Simplex_tree/include/gudhi/Simplex_tree.h
+++ b/src/Simplex_tree/include/gudhi/Simplex_tree.h
@@ -1268,7 +1268,7 @@ class Simplex_tree {
* function is not launching `initialize_filtration()` but returns the filtration modification information. If the
* complex has changed , please call `initialize_filtration()` to recompute it.
* \post Note that the dimension of the simplicial complex may be lower after calling `prune_above_filtration()`
- * than it was before. However, `upper_bond_dimension()` will return the old value, which remains a valid upper
+ * than it was before. However, `upper_bound_dimension()` will return the old value, which remains a valid upper
* bound. If you care, you can call `dimension()` to recompute the exact dimension.
*/
bool prune_above_filtration(Filtration_value filtration) {
@@ -1342,7 +1342,7 @@ class Simplex_tree {
* \exception std::invalid_argument In debug mode, if sh has children.
* \post Be aware that removing is shifting data in a flat_map (`initialize_filtration()` to be done).
* \post Note that the dimension of the simplicial complex may be lower after calling `remove_maximal_simplex()`
- * than it was before. However, `upper_bond_dimension()` will return the old value, which remains a valid upper
+ * than it was before. However, `upper_bound_dimension()` will return the old value, which remains a valid upper
* bound. If you care, you can call `dimension()` to recompute the exact dimension.
* \internal @return true if the leaf's branch has no other leaves (branch's children has been re-assigned), false otherwise.
*/