First, I know there has been a lot of works to compute the edit distance between two graphs. But most of the GED algorithms are applied in general cases.
Now considering my case, there are two graphs G(V1,E1) and G(V2,E2). Vk is a set of nodes which includes k vertices(k is a constant), and Vk satisfies both Vk⊆V1 and Vk⊆V2. I want to remain the correspondance between these two graphs when computing the edit distance between them.
I am wondering if there any algorithm aim at this situation? If there is not, does any one have any advice for me? thanks a lot
PS
Assume that vi is a node in Vk. What I am concerned about is that vi remains unchanged when G1 is transformed to G2, which means there is no operation on vi(e.g substitute vi in G1 to u in G2, delete vi in G1, insert vi in G2) during the operations sequence which transform G1 to G2.