summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Rouvreau <10407034+VincentRouvreau@users.noreply.github.com>2021-05-04 14:10:26 +0200
committerGitHub <noreply@github.com>2021-05-04 14:10:26 +0200
commitf02ea9ad032e6ccef1ed40ddbdd6a3d2d66b2cd2 (patch)
tree6789b5f0d0a1cb29f53ca9795f41a063c9528339
parenta6d8eed666d168d4bf38789024b92b5af081c85d (diff)
parentaeff21a712e488a2948d7c12f67f2f11b047ada8 (diff)
Merge pull request #493 from Hind-M/cython_stree_class_constructor_names
Set Simplex_tree_interface_full_featured constructor name (Simplex_tree) to the class name
-rw-r--r--src/python/gudhi/simplex_tree.pxd2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/gudhi/simplex_tree.pxd b/src/python/gudhi/simplex_tree.pxd
index 000323af..3b8ea4f9 100644
--- a/src/python/gudhi/simplex_tree.pxd
+++ b/src/python/gudhi/simplex_tree.pxd
@@ -44,7 +44,7 @@ cdef extern from "Simplex_tree_interface.h" namespace "Gudhi":
cdef cppclass Simplex_tree_interface_full_featured "Gudhi::Simplex_tree_interface<Gudhi::Simplex_tree_options_full_featured>":
- Simplex_tree() nogil
+ Simplex_tree_interface_full_featured() nogil
double simplex_filtration(vector[int] simplex) nogil
void assign_simplex_filtration(vector[int] simplex, double filtration) nogil
void initialize_filtration() nogil