summaryrefslogtreecommitdiff
path: root/src/Rips_complex/concept
diff options
context:
space:
mode:
Diffstat (limited to 'src/Rips_complex/concept')
-rw-r--r--src/Rips_complex/concept/Simplicial_complex_for_rips.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/Rips_complex/concept/Simplicial_complex_for_rips.h b/src/Rips_complex/concept/Simplicial_complex_for_rips.h
index 470860e9..ba9a2f5e 100644
--- a/src/Rips_complex/concept/Simplicial_complex_for_rips.h
+++ b/src/Rips_complex/concept/Simplicial_complex_for_rips.h
@@ -31,19 +31,19 @@ namespace rips_complex {
* complex, that can be created from a `Rips_complex`.
*/
struct SimplicialComplexForRips {
- /** Handle to specify the simplex filtration value. */
+ /** \brief Handle to specify the simplex filtration value. */
typedef unspecified Filtration_value;
- /** Returns the number of vertices in the simplicial complex. */
- std::size_t num_vertices();
-
- /** \brief Inserts a a given range 'OneSkeletonGraph' in the simplicial complex. */
+ /** \brief Inserts a given range `Gudhi::rips_complex::Rips_complex::OneSkeletonGraph` in the simplicial complex. */
template<class OneSkeletonGraph>
void insert_graph(const OneSkeletonGraph& skel_graph);
/** \brief Expands the simplicial complex containing only its one skeleton until a given maximal dimension. */
void expansion(int max_dim);
+ /** \brief Returns the number of vertices in the simplicial complex. */
+ std::size_t num_vertices();
+
};
} // namespace rips_complex