2
0
mirror of https://github.com/boostorg/graph.git synced 2026-02-02 08:52:10 +00:00

Qualified call to isomorphism

[SVN r77735]
This commit is contained in:
Jeremiah Willcock
2012-04-03 05:49:07 +00:00
parent aaedb9bac7
commit 7d3b9f0b4b

View File

@@ -301,11 +301,11 @@ namespace boost
if (target_graph == detail::tg_k_5)
{
return isomorphism(K_5,contracted_graph);
return boost::isomorphism(K_5,contracted_graph);
}
else //target_graph == tg_k_3_3
{
return isomorphism(K_3_3,contracted_graph);
return boost::isomorphism(K_3_3,contracted_graph);
}