Class UndirectedGraph<V>

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

public class UndirectedGraph<V> extends Graph<V>
A kind of Graph where all connections between vertices are two-way and have equal cost for traveling A to B or B to A.
See Also: