summaryrefslogtreecommitdiff
path: root/src/python/gudhi/simplex_tree.pyx
diff options
context:
space:
mode:
authorROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-12-11 10:31:09 +0100
committerROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-12-11 10:31:09 +0100
commit40e0976e8dae27f0e30f3c9df1fd7de1a7343948 (patch)
tree6c92c66582ef43eeadc64b4e217f99463b5e802f /src/python/gudhi/simplex_tree.pyx
parent957da77f9484972ce34d0415502887f92080878e (diff)
code review: throw an eception if collapse_edges when no Eigen3
Diffstat (limited to 'src/python/gudhi/simplex_tree.pyx')
-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 7d6ab89a..665d41e6 100644
--- a/src/python/gudhi/simplex_tree.pyx
+++ b/src/python/gudhi/simplex_tree.pyx
@@ -628,8 +628,8 @@ cdef class SimplexTree:
:param nb_iterations: The number of edge collapse iterations to perform. Default is 1.
:type nb_iterations: int
- :note: collapse_edges function requires `Eigen <installation.html#eigen>`_ >= 3.1.0, otherwise no action is
- performed.
+ :note: collapse_edges method requires `Eigen <installation.html#eigen>`_ >= 3.1.0 and an exception is thrown
+ if this method is not available.
"""
# Backup old pointer
cdef Simplex_tree_interface_full_featured* ptr = self.get_ptr()