On 27.01.2015 12:00, malwanain wrote: > Hi > > I've two graphs (.dot files) and I need to check if they are isomorphic or > not. Do you have an example explaining how to load these files and check > them in graph-tool?
a = load_graph("a.dot")
b = load_graph("b.dot")
print(isomorphism(a, b))
Best,
Tiago
--
Tiago de Paula Peixoto <[email protected]>
signature.asc
Description: OpenPGP digital signature
_______________________________________________ graph-tool mailing list [email protected] http://lists.skewed.de/mailman/listinfo/graph-tool
