summaryrefslogtreecommitdiff
path: root/src/Alpha_complex/concept
diff options
context:
space:
mode:
authorvrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2016-10-03 13:28:28 +0000
committervrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2016-10-03 13:28:28 +0000
commite17f35542e727a75f123c9454726a85673879655 (patch)
tree2e464a4964e4d633e47e7dd9e905daab02839a77 /src/Alpha_complex/concept
parent8b1e2bed3fe242003cb7200ab6099925537d8bab (diff)
Precise insert_simplex_and_subfaces concept
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/alpha_complex_create_complex@1607 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 8686088820bac273354d451b237953f984c7bd02
Diffstat (limited to 'src/Alpha_complex/concept')
-rw-r--r--src/Alpha_complex/concept/Simplicial_complex_for_alpha.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/Alpha_complex/concept/Simplicial_complex_for_alpha.h b/src/Alpha_complex/concept/Simplicial_complex_for_alpha.h
index 384ac2eb..24aab215 100644
--- a/src/Alpha_complex/concept/Simplicial_complex_for_alpha.h
+++ b/src/Alpha_complex/concept/Simplicial_complex_for_alpha.h
@@ -53,11 +53,9 @@ struct SimplicialComplexForAlpha {
/** Assigns the 'simplex' with the given 'filtration' value. */
int assign_filtration(Simplex_handle simplex, Filtration_value filtration);
- /** \brief Inserts a simplex with vertices from a given range 'vertex_range' in the simplicial complex with the given
- * 'filtration' value. */
- template< typedef Input_vertex_range >
- Insertion_result_type insert_simplex_and_subfaces(Input_vertex_range const & vertex_range,
- Filtration_value filtration);
+ /** \brief Inserts a simplex with vertices from a given simplex (represented by a vector of Vertex_handle) in the
+ * simplicial complex with the given 'filtration' value. */
+ void insert_simplex_and_subfaces(std::vector<Vertex_handle> const & vertex_range, Filtration_value filtration);
/** Browses the simplicial complex to make the filtration non-decreasing. */
void make_filtration_non_decreasing();