Last active
May 16, 2016 22:33
-
-
Save conbrad/c3822748997e7c6fae7e8aee846b3b9d to your computer and use it in GitHub Desktop.
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
| struct cold_arc { | |
| flow_t flow; | |
| arc_p nextout; | |
| arc_p nextin; | |
| }; | |
| struct hot_arc { | |
| cost_t cost; | |
| node_p tail, head; | |
| int ident; | |
| cost_t org_cost; | |
| struct cold_arc *ca; | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment