Package org.jzy3d.maths.graphs
Interface IGraph<V,E>
-
- All Known Implementing Classes:
DefaultGraph
public interface IGraph<V,E>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addEdge(E edge, V v1, V v2)
void
addVertex(V vertex)
List<E>
getEdges()
V
getEdgeStartVertex(E e)
V
getEdgeStopVertex(E e)
V
getRandomVertex()
V
getVertex(int i)
List<V>
getVertices()
-