Vincent Rouvreau
Vincent Rouvreau
Are you ok for `create_from_coo_matrix` to be static also ?
@albert-github What is the doxygen version from which this will become obsolete ? I am with doxygen 1.9.3 and I have the following warnings: ``` warning: ignoring unsupported tag 'DOT_COMMON_ATTR'...
> I think we can say that the minimal version of doxygen is 1.9.5, now that it is available as a conda package, so we could also remove `GUDHI_DOXYGEN_CLASS_DIAGRAMS` mechanism...
The mechanism we have with `src/cmake/modules/FindTBB.cmake` and `src/cmake/modules/UseTBB.cmake` is broken with latest TBB versions. If I remove these 2 files, TBB is found, but `TBB_LIBRARY_DIRS` is no more set (maybe...
> I would like to build a Delaunay triangulation with CGAL, manipulate it a little, so that it is Delaunay with respect to a larger point cloud, and then use...
https://github.com/GUDHI/gudhi-devel/blob/7e05e915adc1be285e04eb00d3ab7ba1b797f38d/src/python/include/Alpha_complex_interface.h#L59-L64 ```cpp if (fast_version_ || default_filtration_value) { alpha_ptr_ = std::make_unique(points_, exact_version_); } else { alpha_ptr_ = std::make_unique(points_, exact_version_); } alpha_ptr_->create_simplex_tree(simplex_tree, max_alpha_square, default_filtration_value); ``` would solve this issue.
If I have read carefully [this blog post](https://www.fluentcpp.com/2018/05/08/std-iterator-deprecated/), `std::iterator` will be deprecated in C++17, but it is not yet decided if it will be removed later (I didn't found any...
> ```c++ > class All_cells_iterator { > typedef ... iterator_category; > typedef ... reference; > typedef ... pointer; > typedef ... value_type; > typedef ... reference_type; > ... > }...
* The [matplotlib documentation](https://matplotlib.org/3.2.1/tutorials/text/usetex.html) says: "Matplotlib's LaTeX support requires a working LaTeX installation, dvipng (which may be included with your LaTeX installation), and Ghostscript (GPL Ghostscript 9.0 or later is...
This would be a nice move ! It seems you need to install texlive-full, I cannot find an exhaustive list... A bit too much just to display persistence diagram...