We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
we want to make sure if two graphs described as edge lists are isomorphic.
1→2, 2→3, 1→3, 2→4 ≅ 4→6, 6→1, 4→1, 6→3
1→2, 2→3, 1→3, 2→4
4→6, 6→1, 4→1, 6→3
with datascript JS example we can test this, like this
edge(e1, 1, 2). edge(e2, 2, 3). edge(e3, 1, 3). edge(e4, 2, 4). isWhatIWant(N1,N2,N3,N4,E1,E2,E3,E4) :- edge(E1,N1,N2), edge(E2,N2,N3), edge(E3,N1,N3), edge(E4,N2,N4), N1 != N2 != N3 != N4, E1 != E2 != E3 != E4.
but that doesn't cover all cases.. or does it?
The text was updated successfully, but these errors were encountered:
wip on PR #23
Sorry, something went wrong.
No branches or pull requests
we want to make sure if two graphs described as edge lists are isomorphic.
1→2, 2→3, 1→3, 2→4
≅4→6, 6→1, 4→1, 6→3
with datascript JS example we can test this, like this
but that doesn't cover all cases.. or does it?
The text was updated successfully, but these errors were encountered: