gudhi-devel
gudhi-devel copied to clipboard
The GUDHI library is a generic open source C++ library, with a Python interface, for Topological Data Analysis (TDA) and Higher Dimensional Geometry Understanding.
Possibility to have a `const Simplex_tree`, but still be able to iterate over it or access information. It is a draft, as it probably needs more testing (ignore the tests...
Data in simplices was introduced in #1105 but these data are not copied when copying a Simplex_tree. Should we do it ? Or just say in doc these data are...
The utilities in gudhi were given names that are fine as long as they stay somewhere isolated, but they are not so nice if you intend to install them in...
The output from `ctest --output-on-failure` is in the attached file. [LastTest.log](https://github.com/user-attachments/files/16900444/LastTest.log) The following tests FAILED: 106 - Nerve_GIC_example_CoordGIC (Subprocess aborted) If this is known, there happened to be no issues...
I can see multiple `_is_prime` implementations in Persistence_matrix module: * https://github.com/GUDHI/gudhi-devel/blob/f23c15477d65209ba682b36d898b3770234598a9/src/Persistence_matrix/include/gudhi/Fields/Zp_field.h#L405 * https://github.com/GUDHI/gudhi-devel/blob/f23c15477d65209ba682b36d898b3770234598a9/src/Persistence_matrix/include/gudhi/Fields/Multi_field_small_operators.h#L493 * https://github.com/GUDHI/gudhi-devel/blob/f23c15477d65209ba682b36d898b3770234598a9/src/Persistence_matrix/include/gudhi/Fields/Multi_field_small.h#L390 * https://github.com/GUDHI/gudhi-devel/blob/f23c15477d65209ba682b36d898b3770234598a9/src/Persistence_matrix/include/gudhi/Fields/Multi_field_operators.h#L440 + a new implementation that comes with Ripser new module : https://github.com/mglisse/gudhi-devel/blob/8cab8c9e3695846278f3b8fd8095715bbc8e5950/src/Ripser/include/gudhi/ripser.h#L158 We...
We could also use `autodoc_default_options` to avoid having to specify `:members:` all the time. Avoid `:show-inheritance:` when the only base is `object`. etc. _Originally posted by @mglisse in https://github.com/GUDHI/gudhi-devel/pull/1052#discussion_r1698382260_
You can get the modules in default with this link: https://gudhi.inria.fr/python/latest/search.html?q=__new__ This seems to be an issue between sphinx and cython modules. This can be workaround with `:exclude-members: __new__`
https://github.com/GUDHI/gudhi-devel/blob/5fd2be92e9ead47909d180e59375142dd65ac6ab/src/GudhUI/model/Model.h#L198-L201 The number of connected components is printed 3 times... I don't know if other statistics were supposed to be printed (copy-paste, then forget to modify the copies), or if...