Uses of Interface
goldman.graph.GraphRepresentation

Packages that use GraphRepresentation
goldman.graph A graph represents general relationships between pairs of elements from among a set of elements. 
 

Uses of GraphRepresentation in goldman.graph
 

Classes in goldman.graph that implement GraphRepresentation
 class AdjacencyListRepresentation<V,E extends Edge<V>>
          The AdjacencyListRepresentation class implements the adjacency list representation of a graph.
 class AdjacencyMatrixRepresentation<V,E extends Edge<V>>
          The AdjacencyMatrixRepresentation class implements the adjacency matrix representation of a graph.
 

Constructors in goldman.graph with parameters of type GraphRepresentation
AbstractGraph(GraphRepresentation<V,E> graph, boolean multigraph)
          It creates an abstract graph with the given specification.
AbstractWeightedGraph(GraphRepresentation<V,E> rep, boolean multigraph)