Closed emmanuelasso closed 4 years ago
Hi, in the readme it appears that:
ged=gm.GraphEditDistance(1,1,1,1) # all edit costs are equal to 1
The costs are adding and removing nodes and edges? but what is the order of the costs?
Hi, the order is the following:
node deletion = 1, node insertion = 1, edge deletion = 1, edge insertion = 1
Hi, in the readme it appears that:
ged=gm.GraphEditDistance(1,1,1,1) # all edit costs are equal to 1
The costs are adding and removing nodes and edges? but what is the order of the costs?