summaryrefslogtreecommitdiff
path: root/src/Persistent_cohomology/example/alpha_complex_3d_helper.h
diff options
context:
space:
mode:
authorvrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2017-11-07 21:31:29 +0000
committervrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2017-11-07 21:31:29 +0000
commit6aaf733bc33df25632700a48fd8421d43d6f42a0 (patch)
tree781858cd5d41e0bb2b770d09ebba5191747df37e /src/Persistent_cohomology/example/alpha_complex_3d_helper.h
parent26966286bf846b47a2bc3c762912ffcf3a4dc6b6 (diff)
parent26197b2171b3e1b818a521690b27f15017f9b2a7 (diff)
Merge last trunk modifications
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/cmake.3.9.fix@2847 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 02939a55292a81e9fed3387f8d3e6726283d964b
Diffstat (limited to 'src/Persistent_cohomology/example/alpha_complex_3d_helper.h')
-rw-r--r--src/Persistent_cohomology/example/alpha_complex_3d_helper.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Persistent_cohomology/example/alpha_complex_3d_helper.h b/src/Persistent_cohomology/example/alpha_complex_3d_helper.h
index 7865e4ec..6b3b7d5d 100644
--- a/src/Persistent_cohomology/example/alpha_complex_3d_helper.h
+++ b/src/Persistent_cohomology/example/alpha_complex_3d_helper.h
@@ -23,7 +23,7 @@
#ifndef ALPHA_COMPLEX_3D_HELPER_H_
#define ALPHA_COMPLEX_3D_HELPER_H_
-template<class Vertex_list, class Cell_handle>
+template <class Vertex_list, class Cell_handle>
Vertex_list from_cell(const Cell_handle& ch) {
Vertex_list the_list;
for (auto i = 0; i < 4; i++) {
@@ -35,7 +35,7 @@ Vertex_list from_cell(const Cell_handle& ch) {
return the_list;
}
-template<class Vertex_list, class Facet>
+template <class Vertex_list, class Facet>
Vertex_list from_facet(const Facet& fct) {
Vertex_list the_list;
for (auto i = 0; i < 4; i++) {
@@ -49,7 +49,7 @@ Vertex_list from_facet(const Facet& fct) {
return the_list;
}
-template<class Vertex_list, class Edge_3>
+template <class Vertex_list, class Edge_3>
Vertex_list from_edge(const Edge_3& edg) {
Vertex_list the_list;
for (auto i = 0; i < 4; i++) {
@@ -63,7 +63,7 @@ Vertex_list from_edge(const Edge_3& edg) {
return the_list;
}
-template<class Vertex_list, class Vertex_handle>
+template <class Vertex_list, class Vertex_handle>
Vertex_list from_vertex(const Vertex_handle& vh) {
Vertex_list the_list;
#ifdef DEBUG_TRACES