Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GraphMatcher edge case? #235

Closed
langsamu opened this issue Mar 26, 2019 · 1 comment · Fixed by #246
Closed

GraphMatcher edge case? #235

langsamu opened this issue Mar 26, 2019 · 1 comment · Fixed by #246
Milestone

Comments

@langsamu
Copy link
Contributor

Consider two graphs loaded from the following Turtle strings:

g1 g2
[ :p 
    [ :p :X ] ,
    [ :p :X ] ,
    [ :p :Y ] ,
    [ :p :Y ]
].
[ :p 
    [ :p :X ] ,
    [ :p :Y ] ,
    [ :p :X ] ,
    [ :p :Y ]
].

They differ only in the order of URI object nodes of the blank objects of the first blank node (XXYY vs XYXY).
They both consist of the following statements:

s p o
_:b <urn:p> _:x1
_:b <urn:p> _:x2
_:b <urn:p> _:y1
_:b <urn:p> _:y2
_:x1 <urn:p> <urn:X>
_:x2 <urn:p> <urn:X>
_:y1 <urn:p> <urn:Y>
_:y2 <urn:p> <urn:Y>

Or visually:
image

Yet they're not equal:

var g1 = new Graph();
g1.LoadFromString(@"
@prefix : <urn:> .

[ :p 
    [ :p :X ] ,
    [ :p :X ] ,
    [ :p :Y ] ,
    [ :p :Y ]
].
");

var g2 = new Graph();
g2.LoadFromString(@"
@prefix : <urn:> .

[ :p 
    [ :p :X ] ,
    [ :p :Y ] ,
    [ :p :X ] ,
    [ :p :Y ]
].
");

Assert.Equal(g1, g2); // fails

I've traced things as far as learning that GraphMatcher resorts to brute force mapping for this topology, which probably explains the abhoring growth rate:

topology time
XXYY vs
XYXY
~80ms
XXXYY vs
XXYXY
~90ms
XXXXYY vs
XXXYXY
~600ms
XXXXXYY vs
XXXXYXY
~3500ms

But it doesn't explain why they're not considered isomorphic.

langsamu added a commit to langsamu/dotnetrdf that referenced this issue Apr 3, 2019
kal pushed a commit that referenced this issue Apr 22, 2019
Fixes a bug in the brute-force graph matching algorithm that doesn't correctly handle the case of a base mapping being specified that is not contained in the list of possible mappings. Fixes #235
@kal kal closed this as completed in #246 Apr 22, 2019
kal added a commit that referenced this issue Apr 22, 2019
Fixes a bug in the brute-force graph matching algorithm that doesn't correctly handle the case of a base mapping being specified that is not contained in the list of possible mappings. Fixes #235
Thanks to @langsamu for the report and repro.
@langsamu
Copy link
Contributor Author

Quite an Easter Monday @kal. Thx!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants