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

Consider PathExpand direction in PathJoin #3765

Open
BingqingLyu opened this issue May 6, 2024 · 0 comments
Open

Consider PathExpand direction in PathJoin #3765

BingqingLyu opened this issue May 6, 2024 · 0 comments
Assignees

Comments

@BingqingLyu
Copy link
Collaborator

Is your feature request related to a problem? Please describe.

Currently, we support s-t path optimization, which split the s-t path query into two sub-path expansions, and then join and concat the sub-paths into a single one, for efficiency. For example, when concating the sub-paths, we assume that the sub path directions looks like Path[1,2,3] and Path[5,4,3] where 1 and 5 are src and dst vertices in the original path, and thus we concat it into [1,2,3,4,5].

However, we haven't consider the true direction in PathExpand. For example, we may actually try to concat Path[1,2,3] and Path[3,4,5], and currently implementation would generate unexpected results. Please fix this.

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

No branches or pull requests

2 participants