|
From: | zhouda |
Subject: | [igraph] an igraph isomorphism problem |
Date: | Thu, 22 Aug 2013 08:45:08 +0800 |
User-agent: | Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130803 Thunderbird/17.0.8 |
Hello, I came across a problem when I was trying to get the
isomorphism of two graphs. Here's the python-igraph code: -------------------------------------------- import igraph g1=igraph.Graph([(0,1),(1,0),(0,0),(1,1)],directed=True) g2=igraph.Graph([(0,1),(1,0),(0,1),(1,0)],directed=True) print g1.isomorphic_vf2(g2) --------------------------------------------- the result is "True". But I think it should be 'False', and Mathematica and NetworkX both give the "False" result. A similar thing happened when I was trying to calculate the isomorphism of these following two graphs: --------------------------------------------- g3=igraph.Graph([(0,1),(1,2),(2,0),(0,3),(3,0),(0,0),(3,3)],directed=True) g4=igraph.Graph([(0,1),(1,2),(2,0),(0,3),(3,0),(0,3),(3,0)],directed=True) --------------------------------------------- I don't know what's wrong. Can you please help me? Thank you! --
周达,Day Zhou Interdisciplinary Center for Theoretical Study (ICTS) University of Science and Technology of China (USTC) |
[Prev in Thread] | Current Thread | [Next in Thread] |