summaryrefslogtreecommitdiff
path: root/src/python/gudhi
diff options
context:
space:
mode:
authorROUVREAU Vincent <vincent.rouvreau@inria.fr>2021-03-25 09:04:27 +0100
committerROUVREAU Vincent <vincent.rouvreau@inria.fr>2021-03-25 09:04:27 +0100
commit98cc06acb5f4b7caf4c23645614a472f7f9b5f3a (patch)
tree23d0973a0a9ba88a4475213a0b662e79eeea9830 /src/python/gudhi
parent77e577eb28ca7622553cd0527db76d46b473c445 (diff)
Move simplex tree equality operator in another branch
Diffstat (limited to 'src/python/gudhi')
-rw-r--r--src/python/gudhi/simplex_tree.pxd1
-rw-r--r--src/python/gudhi/simplex_tree.pyx9
2 files changed, 0 insertions, 10 deletions
diff --git a/src/python/gudhi/simplex_tree.pxd b/src/python/gudhi/simplex_tree.pxd
index 2aa435b1..000323af 100644
--- a/src/python/gudhi/simplex_tree.pxd
+++ b/src/python/gudhi/simplex_tree.pxd
@@ -74,7 +74,6 @@ cdef extern from "Simplex_tree_interface.h" namespace "Gudhi":
Simplex_tree_skeleton_iterator get_skeleton_iterator_begin(int dimension) nogil
Simplex_tree_skeleton_iterator get_skeleton_iterator_end(int dimension) nogil
pair[Simplex_tree_boundary_iterator, Simplex_tree_boundary_iterator] get_boundary_iterators(vector[int] simplex) nogil except +
- bint operator==(Simplex_tree_interface_full_featured) nogil
cdef extern from "Persistent_cohomology_interface.h" namespace "Gudhi":
cdef cppclass Simplex_tree_persistence_interface "Gudhi::Persistent_cohomology_interface<Gudhi::Simplex_tree<Gudhi::Simplex_tree_options_full_featured>>":
diff --git a/src/python/gudhi/simplex_tree.pyx b/src/python/gudhi/simplex_tree.pyx
index b5a938d5..d7991417 100644
--- a/src/python/gudhi/simplex_tree.pyx
+++ b/src/python/gudhi/simplex_tree.pyx
@@ -639,12 +639,3 @@ cdef class SimplexTree:
self.thisptr = <intptr_t>(ptr.collapse_edges(nb_iter))
# Delete old pointer
del ptr
-
- def __eq__(self, other):
- """Simplex tree equality operator using C++ depth first search operator==
-
- :returns: True if the 2 simplex trees are equal, False otherwise.
- :rtype: bool
- """
- cdef intptr_t other_int_ptr=other.thisptr
- return dereference(self.get_ptr()) == dereference(<Simplex_tree_interface_full_featured*>other_int_ptr) \ No newline at end of file