Vincent Rouvreau

Results 72 issues of Vincent Rouvreau

Just like [read_points_from_off_file](https://gudhi.inria.fr/python/latest/point_cloud.html#gudhi.read_points_from_off_file), a `read_faces_from_off_file` function would be helpful

enhancement

SciPy is an optional third party library and its use is documented in [installation procedure](https://gudhi.inria.fr/python/latest/installation.html#scipy). In the [optimal transport version](https://gudhi.inria.fr/python/latest/wasserstein_distance_user.html#optimal-transport) of the wasserstein distance, we should also specify that SciPy...

doc

```python import gudhi as gd import numpy as np from joblib import Parallel, delayed edges = np.random.randint(15000, size=(2, 80000)) def ToSimplexTree(): st_copy = gd.SimplexTree() st_copy.insert_batch(edges, np.zeros(len(edges.T))) print(len(edges.T), " - ",...

As for #703 we should investigate if the same phenomena is present in other simplicial complex construction To be checked for: * [X] Tangential complex - cf. #762 * [X]...

In the [basic example for Coxeter](https://gudhi.inria.fr/doc/latest/cell_complex_from_basic_circle_manifold_8cpp-example.html), we advertise the use of the Cell complex, but we wanted to hide it from the user. We could rewrite the example as: ```cpp...

doc

Ordering changes in 3d is no longer the behaviour Fix #72

This PR is required by future CGAL 6.0 * Factorize `add_executable` and `target_link_libraries` with CMake targets in a new function `add_executable_with_targets` * Use Cgal and Eigen3 cmake target - requires...

While testing a new compilation environment with up-to-date third parties libraries, I faced errors with perslay tests: ```txt File "/workspace/gudhi/gudhi-devel/build/src/python/gudhi/tensorflow/perslay.py", line 132, in __init__ super().__init__(dynamic=True, **kwargs) File "/miniconda3/envs/custom-cgal/lib/python3.10/site-packages/keras/src/layers/layer.py", line 263,...

bug

I moved to `python-docs-theme` on my [latest documentation version](https://gudhi.inria.fr/python/latest/) and I was quite happy that it was managing `body_max_width` at `100%` properly (cf. [conf.py](https://github.com/GUDHI/gudhi-devel/blob/master/src/python/doc/conf.py) file). But after a conda update,...