From 14fb8b9c1ad66df2d646bf5870dca7c5fbe9503f Mon Sep 17 00:00:00 2001 From: vrouvrea Date: Tue, 25 Sep 2018 13:41:21 +0000 Subject: Code review : use std::unordered_map instead of std::map git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/alpha_complex_3d_module_vincent@3903 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 73dd93e44ea8c4029bffd5e6fb5bcbcb634bb525 --- src/Alpha_complex/include/gudhi/Alpha_complex_3d.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Alpha_complex/include/gudhi/Alpha_complex_3d.h b/src/Alpha_complex/include/gudhi/Alpha_complex_3d.h index 3f145272..42f49e15 100644 --- a/src/Alpha_complex/include/gudhi/Alpha_complex_3d.h +++ b/src/Alpha_complex/include/gudhi/Alpha_complex_3d.h @@ -52,7 +52,7 @@ #include #include -#include +#include #include #include #include // for std::unique_ptr @@ -445,8 +445,8 @@ public: //using Filtration_value = typename SimplicialComplexForAlpha3d::Filtration_value; using Complex_vertex_handle = typename SimplicialComplexForAlpha3d::Vertex_handle; - using Alpha_shape_simplex_tree_map = std::map; + using Alpha_shape_simplex_tree_map = std::unordered_map; using Simplex_tree_vector_vertex = std::vector; #ifdef DEBUG_TRACES -- cgit v1.2.3