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 voidaddEdge(E edge, V v1, V v2)voidaddVertex(V vertex)List<E>getEdges()VgetEdgeStartVertex(E e)VgetEdgeStopVertex(E e)VgetRandomVertex()VgetVertex(int i)List<V>getVertices()
-