Class DirectedGraph<V>

java.lang.Object
com.github.yellowstonegames.path.Graph<V>
com.github.yellowstonegames.path.DirectedGraph<V>
Type Parameters:
V - the vertex type; often Coord
All Implemented Interfaces:
Externalizable, Serializable
Direct Known Subclasses:
CostlyGraph

public class DirectedGraph<V> extends Graph<V>
A kind of Graph where all connections between vertices are one-way (but a connection may exist that goes from A to B and another connection may go from B to A), and each connection can have a different cost.
See Also: