Skip to content

Instantly share code, notes, and snippets.

@conbrad
Last active May 16, 2016 22:33
Show Gist options
  • Select an option

  • Save conbrad/c3822748997e7c6fae7e8aee846b3b9d to your computer and use it in GitHub Desktop.

Select an option

Save conbrad/c3822748997e7c6fae7e8aee846b3b9d to your computer and use it in GitHub Desktop.
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