#include <graph.h>
Inheritance diagram for ExtendableGraph:
Definition at line 452 of file graph.h.
Public Member Functions | |
ExtendableGraph () | |
Defalult constructor. | |
Node | addNode () |
Add a new node to the graph. | |
Edge | addEdge (Node h, Node t) |
Add a new edge to the graph. | |
void | clear () |
Resets the graph. |
|
Defalult constructor. Definition at line 459 of file graph.h. |
|
References lemon::INVALID. |
|
Add a new edge to the graph with tail node
References lemon::INVALID. |
|
This function deletes all edges and nodes of the graph. It also frees the memory allocated to store them.
|