summaryrefslogtreecommitdiff
path: root/src/Toplex_map
diff options
context:
space:
mode:
authorROUVREAU Vincent <vincent.rouvreau@inria.fr>2019-05-24 14:49:02 +0200
committerROUVREAU Vincent <vincent.rouvreau@inria.fr>2019-05-24 14:49:02 +0200
commite89b26ec52c3b7ce7cce0b40f0dd58034e2def53 (patch)
treeb5c20a9f73dcdb568212b5a33332ae6395559993 /src/Toplex_map
parentff5b66c799d61b2a955b69b7012e1cee5a13d12e (diff)
Fix unset boolean by default
Diffstat (limited to 'src/Toplex_map')
-rw-r--r--src/Toplex_map/include/gudhi/Lazy_toplex_map.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Toplex_map/include/gudhi/Lazy_toplex_map.h b/src/Toplex_map/include/gudhi/Lazy_toplex_map.h
index b0b3706e..d7bccdff 100644
--- a/src/Toplex_map/include/gudhi/Lazy_toplex_map.h
+++ b/src/Toplex_map/include/gudhi/Lazy_toplex_map.h
@@ -93,7 +93,7 @@ class Lazy_toplex_map {
std::unordered_map<Vertex, std::size_t> gamma0_lbounds;
std::unordered_map<Vertex, Simplex_ptr_set> t0;
- bool empty_toplex; // Is the empty simplex a toplex ?
+ bool empty_toplex = true; // Is the empty simplex a toplex ?
typedef boost::heap::fibonacci_heap<std::pair<std::size_t, Vertex>> PriorityQueue;
PriorityQueue cleaning_priority;