-
Notifications
You must be signed in to change notification settings - Fork 0
graph node
Ned Bingham edited this page Apr 2, 2017
·
2 revisions
struct node : end_node
A node in a graph.
-
value_type valueis the value that this node contains. -
links nextthe outgoing arcs of this node. -
links prevthe incoming arcs of this node.
node()The default constructor calls the default constructor of end_node and leaves value unset.
node(const value_type &value)Calls the default constructor of end_node and sets value directly.