Skip to content

Instantly share code, notes, and snippets.

@viksit
Created March 29, 2010 01:32
Show Gist options
  • Save viksit/347234 to your computer and use it in GitHub Desktop.
Save viksit/347234 to your computer and use it in GitHub Desktop.
struct edge {
vertex_t target;
weight_t weight;
edge(vertex_t arg_target, weight_t arg_weight)
: target(arg_target), weight(arg_weight) { }
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment