summaryrefslogtreecommitdiff
path: root/src/python/gudhi/simplex_tree.pyx
diff options
context:
space:
mode:
authorMathieuCarriere <mathieu.carriere3@gmail.com>2020-03-20 12:47:13 -0400
committerMathieuCarriere <mathieu.carriere3@gmail.com>2020-03-20 12:47:13 -0400
commit1e0e378ab442672ef569e93c4114b0e99ea70f6e (patch)
tree37a9fb75735aa73cfb1ea384b7290c775bfdb4ee /src/python/gudhi/simplex_tree.pyx
parent361abfcfa9ec18c76837f847f8e2e3a060cf7db7 (diff)
small fix
Diffstat (limited to 'src/python/gudhi/simplex_tree.pyx')
-rw-r--r--src/python/gudhi/simplex_tree.pyx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/gudhi/simplex_tree.pyx b/src/python/gudhi/simplex_tree.pyx
index 2cd81c14..5b850462 100644
--- a/src/python/gudhi/simplex_tree.pyx
+++ b/src/python/gudhi/simplex_tree.pyx
@@ -443,7 +443,7 @@ cdef class SimplexTree:
"""
cdef vector[pair[int, pair[double, double]]] persistence_result
if self.pcohptr == NULL:
- self.pcohptr = new Simplex_tree_persistence_interface(self.get_ptr(), True)
+ self.pcohptr = new Simplex_tree_persistence_interface(self.get_ptr(), False)
if self.pcohptr != NULL:
self.pcohptr.get_persistence(homology_coeff_field, min_persistence)
if self.pcohptr != NULL: