summaryrefslogtreecommitdiff
path: root/src/Alpha_complex/concept/SimplicialComplexForAlpha3d.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Alpha_complex/concept/SimplicialComplexForAlpha3d.h')
-rw-r--r--src/Alpha_complex/concept/SimplicialComplexForAlpha3d.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/Alpha_complex/concept/SimplicialComplexForAlpha3d.h b/src/Alpha_complex/concept/SimplicialComplexForAlpha3d.h
index f6085a26..7acdf105 100644
--- a/src/Alpha_complex/concept/SimplicialComplexForAlpha3d.h
+++ b/src/Alpha_complex/concept/SimplicialComplexForAlpha3d.h
@@ -1,5 +1,5 @@
-/* This file is part of the Gudhi Library. The Gudhi library
- * (Geometric Understanding in Higher Dimensions) is a generic C++
+/* This file is part of the Gudhi Library. The Gudhi library
+ * (Geometric Understanding in Higher Dimensions) is a generic C++
* library for computational topology.
*
* Author(s): Vincent Rouvreau
@@ -41,14 +41,13 @@ struct SimplicialComplexForAlpha3d {
/** \brief Inserts a simplex from a given simplex (represented by a vector of Vertex_handle) in the
* simplicial complex with the given 'filtration' value. */
- void insert_simplex(std::vector<Vertex_handle> const & vertex_range, Filtration_value filtration);
+ void insert_simplex(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();
/** Prune the simplicial complex above 'filtration' value given as parameter. */
void prune_above_filtration(Filtration_value filtration);
-
};
} // namespace alpha_complex