summaryrefslogtreecommitdiff
path: root/src/Alpha_complex/include/gudhi/Alpha_complex.h
diff options
context:
space:
mode:
authorROUVREAU Vincent <vincent.rouvreau@inria.fr>2019-12-10 10:03:53 +0100
committerROUVREAU Vincent <vincent.rouvreau@inria.fr>2019-12-10 10:03:53 +0100
commit329637d2a0a806955a29faccf38915c3fb7cd2fd (patch)
treeed7bfbc6697d34f2d5a7ff140682150fea0f0960 /src/Alpha_complex/include/gudhi/Alpha_complex.h
parentf87a1026d5d1accbb6a558ef5d50f5c4c035e0d8 (diff)
Remove number_of_vertices method from Alpha_complex as there is no added value to Simplex_tree.num_vertices()
Diffstat (limited to 'src/Alpha_complex/include/gudhi/Alpha_complex.h')
-rw-r--r--src/Alpha_complex/include/gudhi/Alpha_complex.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/Alpha_complex/include/gudhi/Alpha_complex.h b/src/Alpha_complex/include/gudhi/Alpha_complex.h
index 6f19cb6c..f2a05e95 100644
--- a/src/Alpha_complex/include/gudhi/Alpha_complex.h
+++ b/src/Alpha_complex/include/gudhi/Alpha_complex.h
@@ -191,14 +191,6 @@ class Alpha_complex {
return vertex_handle_to_iterator_.at(vertex)->point();
}
- /** \brief number_of_vertices returns the number of vertices (same as the number of points).
- *
- * @return The number of vertices.
- */
- std::size_t number_of_vertices() const {
- return vertex_handle_to_iterator_.size();
- }
-
private:
template<typename InputPointRange >
void init_from_range(const InputPointRange& points) {