summaryrefslogtreecommitdiff
path: root/src/Rips_complex/concept
diff options
context:
space:
mode:
authorvrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2016-12-16 10:10:55 +0000
committervrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2016-12-16 10:10:55 +0000
commit08bfe7735e33efbd81b3fd58e8bc34e3228baa3b (patch)
tree8018a52dc42c9f23ed1323e31856e8b2c018dba7 /src/Rips_complex/concept
parentde2573cf2b2eb92cff628d9690a067b50b4ca145 (diff)
Modify doc after review
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/distance_matrix_in_rips_module@1893 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 03cb7169f4b5454de0d7ce0f9946fbaa26d74356
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