org._3pq.jgrapht.graph
Class WeightedPseudograph
- Cloneable, Graph, Serializable, UndirectedGraph, WeightedGraph
public class WeightedPseudograph
A weighted pseudograph. A weighted pseudograph is a non-simple undirected
graph in which both graph loops and multiple edges are permitted. The edges
of a weighted pseudograph have weights. If you're unsure about
pseudographs, see:
http://mathworld.wolfram.com/Pseudograph.html.
addEdge , addEdge , addVertex , clone , containsEdge , containsVertex , degreeOf , edgeSet , edgesOf , getAllEdges , getEdge , getEdgeFactory , inDegreeOf , incomingEdgesOf , isAllowingLoops , isAllowingMultipleEdges , outDegreeOf , outgoingEdgesOf , removeEdge , removeEdge , removeVertex , setEdgeListFactory , vertexSet |
WeightedPseudograph
public WeightedPseudograph()
Creates a new weighted pseudograph.
WeightedPseudograph
public WeightedPseudograph(EdgeFactory ef)
Creates a new weighted pseudograph with the specified edge factory.
ef
- the edge factory of the new graph.