Subject: [Boost-bugs] [Boost C++ Libraries] #9808: bc_clustering: "has no edges" identifier not found
From: Boost C++ Libraries (noreply_at_[hidden])
Date: 2014-03-25 10:54:54
#9808: bc_clustering: "has no edges" identifier not found
------------------------------------------+----------------------
Reporter: Åukasz Ilnicki <lukaszi89@â¦> | Owner: jewillco
Type: Bugs | Status: new
Milestone: To Be Determined | Component: graph
Version: Boost 1.55.0 | Severity: Problem
Keywords: bc_clustering |
------------------------------------------+----------------------
Function has_no_edges(g) is behind graph namespace. Need to attach graph::
indicator before calling this function in bc_clustering.hpp.
{{{
#!div style="font-size: 80%"
Original library code:
{{{#!python
if (has_no_edges(g)) return;
(...)
do {
(...)
} while (!is_done && !has_no_edges(g));
}}}
}}}
{{{
#!div style="font-size: 80%"
Modified code:
{{{#!python
if (graph::has_no_edges(g)) return;
(...)
do {
(...)
} while (!is_done && !graph::has_no_edges(g));
}}}
}}}
-- Ticket URL: <https://svn.boost.org/trac/boost/ticket/9808> Boost C++ Libraries <http://www.boost.org/> Boost provides free peer-reviewed portable C++ source libraries.
This archive was generated by hypermail 2.1.7 : 2017-02-16 18:50:15 UTC