Files
unisa_strutture_dati_2013_2014/graph/DirectedGraph.java
2014-05-20 20:25:19 +02:00

13 lines
273 B
Java

package graph;
/**
* Created with MONSTER.
* User: xgiovio
* Date: 20/05/2014
* Time: 19:59
*/
public interface DirectedGraph<V, E> extends Graph<V,E>{
public boolean isDirected(Edge<E> e);
public Edge<E> insertDirectedEdge(Vertex<V> u, Vertex<V> v, V o);
}