I have two isomorphic graphs.
Given a self-completing graph G
, is there a faster algorithm to find the mapping of vertices between G
and its complement
I think there should be a faster way, because we know that 2 graphs are isomorphic and complementary .
EDIT
Sorry, I was more clear: I already know the VF2 algorithm, which has O (V ^ 2) time complexity at best and O (V! · V) at worst. This makes it difficult to calculate mappings for large graphs (1k vertices, 500k edges) that I work with.
I just asked if this particular case of graphs gives both isomorphic and additional , there is a faster solution.
source
share