summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 0bfaa19f..67428401 100644
--- a/src/python/gudhi/simplex_tree.pyx
+++ b/src/python/gudhi/simplex_tree.pyx
@@ -641,8 +641,8 @@ cdef class SimplexTree:
del ptr
def __eq__(self, other:SimplexTree):
- """Simplex tree equality operator using C++ depth first search operator==
+ """Test for structural equality
:returns: True if the 2 simplex trees are equal, False otherwise.
:rtype: bool
"""
- return dereference(self.get_ptr()) == dereference(other.get_ptr()) \ No newline at end of file
+ return dereference(self.get_ptr()) == dereference(other.get_ptr())