-
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 value
is the value that this node contains. -
links next
the outgoing arcs of this node. -
links prev
the 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.