id summary reporter owner description type status milestone component version severity resolution keywords cc 9808 "bc_clustering: ""has no edges"" identifier not found" Łukasz Ilnicki Jeremiah Willcock "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)); }}} }}}" Bugs new To Be Determined graph Boost 1.55.0 Problem bc_clustering