summaryrefslogtreecommitdiff
path: root/src/Cech_complex/include/gudhi/Cech_complex.h
diff options
context:
space:
mode:
authorvrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2018-03-27 14:01:50 +0000
committervrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2018-03-27 14:01:50 +0000
commit7e3cfb3aad5ad38779e48f77dc2ba24014814dc9 (patch)
tree51958815e86cc9d1b4acd5ffa0bb1fceb099161b /src/Cech_complex/include/gudhi/Cech_complex.h
parent90ea210d07afa9c48a19cdad0621d607b4ebd54b (diff)
No more deep copy of the simplicial complex in the Cech Blocker, just use the pointer
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/cechcomplex_vincent@3307 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 026cd5491d8e3030fce63beabd6e77bddebb05cc
Diffstat (limited to 'src/Cech_complex/include/gudhi/Cech_complex.h')
-rw-r--r--src/Cech_complex/include/gudhi/Cech_complex.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Cech_complex/include/gudhi/Cech_complex.h b/src/Cech_complex/include/gudhi/Cech_complex.h
index 7c2e31ac..1cae7b0b 100644
--- a/src/Cech_complex/include/gudhi/Cech_complex.h
+++ b/src/Cech_complex/include/gudhi/Cech_complex.h
@@ -97,7 +97,7 @@ class Cech_complex {
complex.insert_graph(cech_skeleton_graph_);
// expand the graph until dimension dim_max
complex.expansion_with_blockers(dim_max,
- Cech_blocker<SimplicialComplexForCechComplex, ForwardPointRange>(complex, this));
+ Cech_blocker<SimplicialComplexForCechComplex, ForwardPointRange>(&complex, this));
}
/** @return max_radius value given at construction. */