From 8447fa7575ae4db0db6daa8e03a0c2f9a374df7c Mon Sep 17 00:00:00 2001 From: glisse Date: Thu, 29 Mar 2018 15:19:20 +0000 Subject: Use add_edge_without_blockers in GudhUI. When the meaning of add_edge changed, GudhUI was not updated. The old functionality is available as add_edge_without_blockers. git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/trunk@3318 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 58b10f79177736cc99e35fb526e4c987d615ae4c --- src/GudhUI/utils/K_nearest_builder.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/GudhUI/utils/K_nearest_builder.h') diff --git a/src/GudhUI/utils/K_nearest_builder.h b/src/GudhUI/utils/K_nearest_builder.h index 7be0a4f4..4000a331 100644 --- a/src/GudhUI/utils/K_nearest_builder.h +++ b/src/GudhUI/utils/K_nearest_builder.h @@ -81,7 +81,7 @@ template class K_nearest_builder { for (auto it = ++search.begin(); it != search.end(); ++it) { Vertex_handle q(std::get<1>(it->first)); if (p != q && complex_.contains_vertex(p) && complex_.contains_vertex(q)) - complex_.add_edge(p, q); + complex_.add_edge_without_blockers(p, q); } } } -- cgit v1.2.3