From a6e7f96f7d2c391e4548309174cc05f5ae05d871 Mon Sep 17 00:00:00 2001 From: Vincent Rouvreau <10407034+VincentRouvreau@users.noreply.github.com> Date: Thu, 15 Apr 2021 22:48:10 +0200 Subject: Update src/python/gudhi/simplex_tree.pyx Co-authored-by: Marc Glisse --- src/python/gudhi/simplex_tree.pyx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/python') 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()) -- cgit v1.2.3