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 11:45:43 +0000
committervrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2017-11-07 11:45:43 +0000
commit26197b2171b3e1b818a521690b27f15017f9b2a7 (patch)
treec8c86f8c067578d3ecd88c07a84ac5500d795ff4 /src/Persistent_cohomology/example/alpha_complex_3d_helper.h
parent20dce046a003850f49c4e1d995348bc8e4cef85b (diff)
parent654c897471d656c738204f4fcd1a127726637319 (diff)
Merge of cgal.4.11.fix branch to unuse gudhi patches and to fix compilation issue with CGAL 4.11
Add of weighted_periodic_alpha_complex_3d_persistence example git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/trunk@2842 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: fde814b71675902fa7adc523b466304a3bdafdec
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