-
Notifications
You must be signed in to change notification settings - Fork 518
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
SSSP that collects path and distance #148
base: master
Are you sure you want to change the base?
Conversation
Hi Kailash,
|
Hi Danny, Thank you for checking the code. As per your suggestion I have added POD to edge data. And yes it was just capturing nodes as it move but not shortest path. However I have fixed the issue and tested it properly. I am confident that its now capturing shortest path. I would be really glad if you can test the code and let me know if there is any issue with it. Thanks Kailash |
Does it capture all the shortest path from the same length, http://www.graphlab.com Danny Bickson On Tue, Aug 5, 2014 at 9:07 PM, kailashjoshi notifications@github.com
|
In the above graph let say your source is node 4. So the node 1 has three path to reach node 4 i.e. 10, 6 and 18. But node 18 has large distance than 10 and 6 so the program ignore node 18. The program only gives you immediate node of the shortest but not a whole path. so the full output will be 16 1 '4' and the input data is |
Nice image! But did you say that the program also compute multiple short http://www.graphlab.com Danny Bickson On Tue, Aug 5, 2014 at 10:29 PM, kailashjoshi notifications@github.com
|
Yes it does. |
In that case, please prepare a file named sssp_mult_path.cpp to be under Best, http://www.graphlab.com Danny Bickson On Wed, Aug 6, 2014 at 11:04 AM, kailashjoshi notifications@github.com
|
Formatted code so that it is easy to compare with sssp and send pull request. |
Hi, http://www.graphlab.com Danny Bickson On Mon, Aug 11, 2014 at 8:26 AM, kailashjoshi notifications@github.com
|
I have added a file in https://github.com/kailashjoshi/graphlab/blob/master/toolkits/graph_analytics/sssp_mult_path.cpp Do you want me to close this pull request and create a new one? |
SSSP that collects path and distance