Specify namespace

This commit is contained in:
Mael Rouxel-Labbé 2022-07-07 10:14:56 +02:00
parent 4bd80e76f3
commit f1c8a918e4
1 changed files with 1 additions and 1 deletions

View File

@ -1691,7 +1691,7 @@ private:
for(vertex_descriptor v : vertices(m_graph))
{
std::size_t vertexIndex = get(m_vertexIndexMap, v);
m_vertexIsPseudoSource[vertexIndex] = !is_isolated(v, m_graph) &&
m_vertexIsPseudoSource[vertexIndex] = !internal::is_isolated(v, m_graph) &&
(is_saddle_vertex(v) || is_boundary_vertex(v));
}
}