summaryrefslogtreecommitdiff
path: root/src/GudhUI/utils/Is_manifold.h
diff options
context:
space:
mode:
authorvrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2015-10-08 21:48:10 +0000
committervrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2015-10-08 21:48:10 +0000
commit376c2a0dbde0decffb3f37146071368ccb3836a7 (patch)
tree2ce4fc8adbc62217bc373c5ed8753de988b3436f /src/GudhUI/utils/Is_manifold.h
parentcd2e83819689afd2cd1bc76810282111cf5cd59d (diff)
cpplint fixes
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/trunk@845 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 8b15f0805527b494f3a57625de5c69d836b287dd
Diffstat (limited to 'src/GudhUI/utils/Is_manifold.h')
-rw-r--r--src/GudhUI/utils/Is_manifold.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/GudhUI/utils/Is_manifold.h b/src/GudhUI/utils/Is_manifold.h
index 1b25df34..b6b19ee0 100644
--- a/src/GudhUI/utils/Is_manifold.h
+++ b/src/GudhUI/utils/Is_manifold.h
@@ -56,7 +56,7 @@ template<typename SkBlComplex> class Is_manifold {
dim = local_dimension(v);
break;
}
- //check that the link of every vertex is a dim-1 sphere
+ // check that the link of every vertex is a dim-1 sphere
for (auto v : input_complex_.vertex_range()) {
if (!is_k_sphere(v, dim - 1)) {
res = false;
@@ -90,7 +90,7 @@ template<typename SkBlComplex> class Is_manifold {
if (complex.empty()) return -1;
if (complex.num_blockers() != 1) return -2;
- //necessary and sufficient condition : there exists a unique blocker that passes through all vertices
+ // necessary and sufficient condition : there exists a unique blocker that passes through all vertices
auto first_blocker = *(complex.const_blocker_range().begin());
if (first_blocker->dimension() + 1 != complex.num_vertices())