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

LDBC 100 SSSP queries #1832

Merged
merged 1 commit into from
Jul 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
-NAME q37
-COMPARE_RESULT 1
-QUERY MATCH (a:Person)-[r:knows* SHORTEST 1..30]->(b:Person) WHERE a.ID = 94 RETURN COUNT(*)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

open an issue about failed queries. Though how did you obtain the ground truth?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I just noticed the queries are failing. I pulled the answers from my query runs, but it looks like the current master branch is giving different results.

I may have to run it on Neo4J to confirm the answers.

---- 1
407396
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
-NAME q38
-COMPARE_RESULT 1
-QUERY MATCH (a:Person)-[r:knows* SHORTEST 1..30]->(b:Person) WHERE a.ID < 17805 RETURN COUNT(*)
---- 1
360202025
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
-NAME q39
-COMPARE_RESULT 1
-QUERY MATCH (a:Person)-[r:knows* SHORTEST 1..30]->(b:Person) WHERE a.ID = 94 AND b.ID = 30786325764357 RETURN length(r)
---- 1
4
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
-NAME q40
-COMPARE_RESULT 1
-QUERY MATCH (a:Person)-[r:knows* SHORTEST 1..30]->(b:Person) WHERE a.ID < 17805 AND b.ID < 17805 RETURN COUNT(*)
---- 1
6269
Loading