| Interface | Description |
|---|---|
| Graph<V,W extends java.lang.Number> |
An interface for the graphs.
This interface is used for the graphs with Directed edges. A directed edge between V1 and V2 is an edge that has V1 as source and V2 as destination. |
| Class | Description |
|---|---|
| Edge<V,W extends java.lang.Number> |
Class used for retrieving the edges of the graph.
|
| Vertex<V> |
Class used for represent a vertex of the graph.
The vertex contained is linked with the graph, so if any changes are made to it, then they will be reflected here. |