summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/python/gudhi/cubical_complex.pyx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/gudhi/cubical_complex.pyx b/src/python/gudhi/cubical_complex.pyx
index b16a037f..9ebd0b30 100644
--- a/src/python/gudhi/cubical_complex.pyx
+++ b/src/python/gudhi/cubical_complex.pyx
@@ -200,7 +200,7 @@ cdef class CubicalComplex:
integers of each row in each array correspond to: (index of positive top-dimensional cell).
"""
- assert self.pcohptr != NULL, "cofaces_of_persistence_pairs function requires persistence function to be launched first."
+ assert self.pcohptr != NULL, "compute_persistence() must be called before cofaces_of_persistence_pairs()"
cdef vector[vector[int]] persistence_result
output = [[],[]]