feat(SPSP): add table visualization for spsp problem#363
Merged
Conversation
Collaborator
|
I can't wait to see. I'll have a look tonight or tomorrow, but if it's what
I think it is, I'll be putting it to use next semester :)
…On Fri, Jul 10, 2026, 1:42 PM Rajit Nilkar ***@***.***> wrote:
Summary
This PR adds a step-by-step Dijkstra's table visualization to the existing
P_SPSP Single Pair Shortest Path problem, giving users a better
understanding of how the problem is solved "under the hood," beyond just
seeing the final path highlighted on the graph.
------------------------------
You can view, comment on, or merge this pull request online at:
#363
Commit Summary
- 2d95bd9
<2d95bd9>
Add Dijkstra's algorithm table visualization for SPSP problem
File Changes
(2 files <https://github.com/ReduxISU/Redux/pull/363/files>)
- *M* Problems/P/P_SPSP/Solvers/SPSPSolver.cs
<https://github.com/ReduxISU/Redux/pull/363/files#diff-495cf27e04a50bd0f1c1ab2a56e7210b1c319a7dbde518bc4232b4990befba0d>
(113)
- *A* Problems/P/P_SPSP/Visualizations/SPSPTableVisualization.cs
<https://github.com/ReduxISU/Redux/pull/363/files#diff-b9ee4a5f5e63131c3976cb0b0dc8d665421f8d9579e324d7f3d93fa1f9692c69>
(41)
Patch Links:
- https://github.com/ReduxISU/Redux/pull/363.patch
- https://github.com/ReduxISU/Redux/pull/363.diff
—
Reply to this email directly, view it on GitHub
<#363?email_source=notifications&email_token=AAFFW67EFEB5AE6OSBZXZCD5EFBJZA5CNFSNUABEM5UWIORPF5TWS5BNNB2WEL2QOVWGYUTFOF2WK43UF42DAMZRHE2TONZUGSTHEZLBONXW5KTTOVRHGY3SNFRGKZFFMV3GK3TUVRTG633UMVZF6Y3MNFRWW>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAFFW6YHPLIPT7TPHK4XNWT5EFBJZAVCNFSNUABFKJSXA33TNF2G64TZHM3TANRZGAZTIMJVHNEXG43VMU5TIOBVHAYTCNBZGI2KC5QC>
.
Triage notifications, keep track of coding agent tasks and review pull
requests on the go with GitHub Mobile for iOS
<https://github.com/notifications/mobile/ios/AAFFW666DRIVQVZ2QM5VCVL5EFBJZA5CNFSNUABEM5UWIORPF5TWS5BNNB2WEL2QOVWGYUTFOF2WK43UF42DAMZRHE2TONZUGSTHEZLBONXW5KTTOVRHGY3SNFRGKZFFMV3GK3TUVJTG633UMVZF62LPOM>
and Android
<https://github.com/notifications/mobile/android/AAFFW66GBW7J5VFJXO6XJMD5EFBJZA5CNFSNUABEM5UWIORPF5TWS5BNNB2WEL2QOVWGYUTFOF2WK43UF42DAMZRHE2TONZUGSTHEZLBONXW5KTTOVRHGY3SNFRGKZFFMV3GK3TUVZTG633UMVZF6YLOMRZG62LE>.
Download it today!
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
Contributor
Author
|
Professor Wright, I hope it is what you are expecting. If it isn't, I still had some fun making this viz. Included some screenshots in the visualization channel on Discord. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR adds a step-by-step Dijkstra's table visualization to the existing P_SPSP Single Pair Shortest Path problem, giving users a better understanding of how the problem is solved "under the hood," beyond just seeing the final path highlighted on the graph.
Related PRs