summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2022-05-23Merge branch 'master' of https://github.com/GUDHI/gudhi-devel into diffMathieuCarriere
2022-05-23updated output for cubical complexesMathieuCarriere
2022-05-23Merge pull request #619 from albert-github/feature/bug_persistent_linksVincent Rouvreau
Documentation: Non persistent links
2022-05-23[skip ci] example from a small moleculeVincent Rouvreau
2022-05-23[skip ci] example from a small moleculeVincent Rouvreau
2022-05-23[skip ci] example from a small moleculeVincent Rouvreau
Co-authored-by: Marc Glisse <marc.glisse@inria.fr>
2022-05-23Merge pull request #618 from albert-github/feature/bug_docu_redirectVincent Rouvreau
Documentation: Updating redirected links
2022-05-23Update src/common/doc/installation.hVincent Rouvreau
2022-05-23Update src/common/doc/installation.hVincent Rouvreau
Co-authored-by: Marc Glisse <marc.glisse@inria.fr>
2022-05-22Update src/Bitmap_cubical_complex/include/gudhi/Bitmap_cubical_complex.halbert-github
Co-authored-by: Marc Glisse <marc.glisse@inria.fr>
2022-05-22Update src/python/test/test_simplex_tree.pyalbert-github
Co-authored-by: Marc Glisse <marc.glisse@inria.fr>
2022-05-22Update src/Persistent_cohomology/example/rips_multifield_persistence.cppalbert-github
Co-authored-by: Marc Glisse <marc.glisse@inria.fr>
2022-05-22Spelling correctionsalbert-github
A number of spelling corrections as reported by the codespell (see: https://github.com/codespell-project/codespell) program and lists. Some remarks: - not considered are grammatical errors - not considered are names in the code although there are a number that could be improved (like `childs` -> `children`) - in the documentation it could be made clearer what are variables and what is running text (e.g. by placing variables in running text between backticks) - some comments are in the French language, I think it would be better to have them in the English (United States version).
2022-05-22Documentation: handling references to examples in a more transparent wayalbert-github
In case we have the files`Bitmap_cubical_complex/Random_bitmap_cubical_complex.cpp` this will be linked to `_random_bitmap_cubical_complex_8cpp-example.html` and this is now hard coded. When the setting of `CASE_SENSE_NAMES` is set to `YES` the mapping is to `Random_bitmap_cubical_complex_8cpp-example.html` but the hard coded link is still to `_random_bitmap_cubical_complex_8cpp-example.html` so the link cannot be resolved (at runtime!). Same could happen when the `CASE_SENSE_NAMES` is left blank and the the value is system dependent. It is unlikely that this happens but ... By introducing the `ALIASES` `gudhi_example_link` this can be handled by doxygen in a more transparent way. Furthermore wit 2 examples there was a double `cpp` in the text part, this has been corrected as well Notre this solution supersedes #621 and maked #621 obsolete.
2022-05-21Documentation: Non persistent linksalbert-github
During the link check we found some references to `#title..` in respect to links to CGAL, these links work at the moment but are, by CGAL, generated links during runtime based on the HTML `<H...>` tags. When a new paragraph or chapter is added these numbers will change and thus will the link point to the wrong place. All these items have also a more persistent reference anchor that is generated based on the `<name>` of the section (e.g. `\section <name> <description>`). Therefore it is better to used the references based on the `<name>`.
2022-05-20Documentation: Updating redirected linksalbert-github
Updating simple links in documentation sources for which we got during link checking: ``` This is a permanent redirect. The link should be updated. ```
2022-05-20issue #615 Documentation: references to boostalbert-github
Made references to boost so that they point to the last released version.
2022-05-20Fix unbalanced groups and some doxygen typosVincent Rouvreau
2022-05-20Merge branch 'master' of https://github.com/GUDHI/gudhi-devel into diffMathieuCarriere
2022-05-20Documentation: make it easier to build only the documentationalbert-github
After review: - option is now: ``` -DWITH_GUDHI_CPP_DOCUMENTATION_ONLY=ON ``` - added some instructions to the installation description.
2022-05-20Merge pull request #597 from ↵Vincent Rouvreau
VincentRouvreau/stree_iterator_boundary_and_opposite_vertex Boundary and its opposite vertex iterator for the simplex tree
2022-05-19Merge pull request #610 from albert-github/feature/bug_docu_returnVincent Rouvreau
Documentation: Warning about return statement
2022-05-19Documentation: Doxygen warningsalbert-github
Based on review corrected `EXAMPLE_PATH` and `CITE_BIB_FILES`.
2022-05-18Documentation: Warning about return statementalbert-github
When running doxygen over the sources we get the warnings like: ``` .../gudhi-devel/src/Skeleton_blocker/include/gudhi/Skeleton_blocker_complex.h:1073: warning: found documented return type for Gudhi::skeleton_blocker::Skeleton_blocker_complex::remove_popable_blockers that does not return anything ``` The functions are `void` functions so should not have a return value.
2022-05-18Documentation: Doxygen warningsalbert-github
When running doxygen on the sources we get (a.o.) the following warnings: ``` .../gudhi-devel/src/Contraction/include/gudhi/Edge_contraction.h:214: warning: unbalanced grouping commands .../gudhi-devel/src/common/doc/examples.h:3: warning: the name 'Examples' supplied as the argument in the \file statement is not an input file error: bib file .../gudhi-devel/biblio/how_to_cite_gudhi.bib not found! .../gudhi-devel/src/common/doc/installation.h:271: warning: included file biblio/how_to_cite_gudhi.bib is not found. Check your EXAMPLE_PATH ``` This is corrected in the different files and in the settings in src/Doxyfile.in Also there are a number of settings that are obsolete like: ``` warning: Tag 'LATEX_SOURCE_CODE' at line 1835 of file '.../gudhi-devel/build_windows_fork/Doxyfile' has become obsolete. ``` This is corrected in the src/Doxyfile.in file
2022-05-18Merge branch 'master' of https://github.com/GUDHI/gudhi-devel into diffMathieuCarriere
2022-05-17code review: test also the list of all oppposite vertices is the simplex ↵Vincent Rouvreau
given as an input
2022-05-17Merge remote-tracking branch 'upstream/master' into fetch_datasetsHind-M
2022-05-17code review: test also range sizeVincent Rouvreau
2022-05-17Missed reference found by VincentMarc Glisse
2022-05-17Merge remote-tracking branch 'origin/master' into collapse-pr2Marc Glisse
2022-05-16code review: use isinstance(x, T) instead of issubclass(type(x),T)Vincent Rouvreau
2022-05-16code review: limit test was not respecting the one described in the ↵Vincent Rouvreau
documentation
2022-05-12Merge branch 'master' of https://github.com/GUDHI/gudhi-devel into diffMathieuCarriere
2022-05-10Fix limit tests for plot (and warning in test)Vincent Rouvreau
2022-05-09Merge pull request #504 from ↵Vincent Rouvreau
VincentRouvreau/persistence_graphical_tools_improvements Persistence graphical tools improvements
2022-05-06Delete bunny array before removing the fileHind-M
2022-05-05Remove default data home test (because of 'GUDHI_DATA' environment variable ↵Hind-M
option)
2022-05-05Add GUDHI_DATA environment variable optionHind-M
2022-05-04Ask for file_path as parameter of remote fetching functions instead of both ↵Hind-M
dirname and filename Modify remote fetching test
2022-05-02Merge remote-tracking branch 'upstream/master' into fetch_datasetsHind-M
2022-04-29plot_persistence_diagram and plot_persistence_barcode improvementsVincent Rouvreau
2022-04-28Put edge sphere in cacheHind-M
2022-04-27Ultimately, we don't really need to store the min enclosing ball in case itHind-M
contains the extra point, a bool is enough
2022-04-27Remove unnecessary code from cech blockerHind-M
2022-04-27Merge branch 'master' of https://github.com/GUDHI/gudhi-devel into diffMathieuCarriere
2022-04-27update doc + remove numpy/tensorflow mixupMathieuCarriere
2022-04-26Modify cech docHind-M
Use Filtration_value instead of double for casting Use a templated range of points instead of vector in cech constructor Capitalize sphere_circumradius.h file name and make it private in doc
2022-04-25Use Dimension_tag<2> instead of Dynamic_dimension_tag in ↵Hind-M
cech_complex_example_from_points.cpp
2022-04-25Remove cech_complex_step_by_step example and MiniballHind-M