org.apache.commons.graph
Interface UndirectedGraph<V extends Vertex,E extends Edge<V>>

Type Parameters:
V - the Graph vertices type
E - the Graph edges type
All Superinterfaces:
Graph<V,E>

public interface UndirectedGraph<V extends Vertex,E extends Edge<V>>
extends Graph<V,E>

An UndirectedGraph is a graph in which edges have no orientation, i.e., they are not ordered pairs, but sets {u, v} (or 2-multisets) of vertices.


Method Summary
 
Methods inherited from interface org.apache.commons.graph.Graph
getEdges, getEdges, getVertices, getVertices
 



Copyright © 2001-2011 The Apache Software Foundation. All Rights Reserved.