summaryrefslogtreecommitdiff
path: root/src/Persistent_cohomology/concept
diff options
context:
space:
mode:
authorglisse <glisse@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2015-12-11 08:08:40 +0000
committerglisse <glisse@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2015-12-11 08:08:40 +0000
commitf82dc289e2ebe3eb257c42f27876fbc1c64341dd (patch)
tree128f109f35a125bfdfc74f59893dc9fa8db08d00 /src/Persistent_cohomology/concept
parent061e43a2a48525bc5a69482a1ea80f20ff505e55 (diff)
Clarify the semantics of FilteredComplex::simplex(key).
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/trunk@941 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: a2cb908a642ef53c5de25ba5113e03bb45652b9b
Diffstat (limited to 'src/Persistent_cohomology/concept')
-rw-r--r--src/Persistent_cohomology/concept/FilteredComplex.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Persistent_cohomology/concept/FilteredComplex.h b/src/Persistent_cohomology/concept/FilteredComplex.h
index 1834903b..e124d524 100644
--- a/src/Persistent_cohomology/concept/FilteredComplex.h
+++ b/src/Persistent_cohomology/concept/FilteredComplex.h
@@ -65,9 +65,9 @@ struct FilteredComplex
Simplex_key key ( Simplex_handle sh );
/** \brief Returns the simplex associated to a key.
*
- * If key is different from null_key(), there must be a unique
- * simplex having this key. */
- Simplex_handle simplex ( Simplex_key key );
+ * If key is different from null_key(), returns the simplex that
+ * has index idx in the filtration. */
+ Simplex_handle simplex ( Simplex_key idx );
/** \brief Assign a key to a simplex. */
void assign_key(Simplex_handle sh, Simplex_key key);