Uses of Interface
org.jgrapht.WeightedGraph
-
Packages that use WeightedGraph Package Description org.jgrapht.alg Algorithms provided with JGraphT.org.jgrapht.alg.spanning Spanning tree and spanner algorithms.org.jgrapht.generate Generators for graphs of various topologies.org.jgrapht.graph Implementations of various graphs.org.jgrapht.graph.builder Various builder for graphs. -
-
Uses of WeightedGraph in org.jgrapht.alg
Fields in org.jgrapht.alg declared as WeightedGraph Modifier and Type Field Description private WeightedGraph<V,E>KuhnMunkresMinimalWeightBipartitePerfectMatching. graphDeprecated.private WeightedGraph<V,E>MaximumWeightBipartiteMatching. graphDeprecated.protected WeightedGraph<V,E>GreedyMultiplicativeSpanner.WeightedSpannerAlgorithm. spanner(package private) WeightedGraph<java.util.Set<V>,DefaultWeightedEdge>StoerWagnerMinimumCut. workingGraphConstructors in org.jgrapht.alg with parameters of type WeightedGraph Constructor Description KuhnMunkresMatrixImplementation(WeightedGraph<V,E> G, java.util.List<? extends V> S, java.util.List<? extends V> T)Construct new instanceKuhnMunkresMinimalWeightBipartitePerfectMatching(WeightedGraph<V,E> G, java.util.List<? extends V> S, java.util.List<? extends V> T)Deprecated.Construct a new instance of the algorithm.MaximumWeightBipartiteMatching(WeightedGraph<V,E> graph, java.util.Set<V> vertexPartition1, java.util.Set<V> vertexPartition2)Deprecated.Creates a new MaximumWeightBipartiteMatching algorithm instance. -
Uses of WeightedGraph in org.jgrapht.alg.spanning
Fields in org.jgrapht.alg.spanning declared as WeightedGraph Modifier and Type Field Description protected WeightedGraph<V,E>GreedyMultiplicativeSpanner.WeightedSpannerAlgorithm. spanner -
Uses of WeightedGraph in org.jgrapht.generate
Methods in org.jgrapht.generate with parameters of type WeightedGraph Modifier and Type Method Description voidSimpleWeightedBipartiteGraphMatrixGenerator. generateGraph(WeightedGraph<V,E> target, VertexFactory<V> vertexFactory, java.util.Map<java.lang.String,V> resultMap)Generate a weighted graph structure.voidSimpleWeightedGraphMatrixGenerator. generateGraph(WeightedGraph<V,E> target, VertexFactory<V> vertexFactory, java.util.Map<java.lang.String,V> resultMap)abstract voidWeightedGraphGeneratorAdapter. generateGraph(WeightedGraph<V,E> target, VertexFactory<V> vertexFactory, java.util.Map<java.lang.String,T> resultMap)Generate a weighted graph structure. -
Uses of WeightedGraph in org.jgrapht.graph
Classes in org.jgrapht.graph that implement WeightedGraph Modifier and Type Class Description classAsWeightedDirectedGraph<V,E>A weighted view of the backing graph specified in the constructor.classAsWeightedGraph<V,E>A weighted view of the backing graph specified in the constructor.classDefaultDirectedWeightedGraph<V,E>A directed weighted graph.classDirectedWeightedMultigraph<V,E>A directed weighted multigraph.classDirectedWeightedPseudograph<V,E>A directed weighted pseudograph.classDirectedWeightedSubgraph<V,E>A directed weighted graph that is a subgraph of another graph.classListenableDirectedWeightedGraph<V,E>A directed weighted graph which is alsoListenableGraph.classListenableUndirectedWeightedGraph<V,E>An undirected weighted graph which is alsoListenableGraph.classSimpleDirectedWeightedGraph<V,E>A simple directed weighted graph.classSimpleWeightedGraph<V,E>A simple weighted graph.classUndirectedWeightedSubgraph<V,E>An undirected weighted graph that is a subgraph on other graph.classWeightedMultigraph<V,E>A weighted multigraph.classWeightedPseudograph<V,E>A weighted pseudograph.Constructors in org.jgrapht.graph with parameters of type WeightedGraph Constructor Description DirectedWeightedSubgraph(WeightedGraph<V,E> base)Creates a new weighted directed induced subgraph with all vertices included.DirectedWeightedSubgraph(WeightedGraph<V,E> base, java.util.Set<? extends V> vertexSubset)Creates a new weighted directed induced subgraph.DirectedWeightedSubgraph(WeightedGraph<V,E> base, java.util.Set<? extends V> vertexSubset, java.util.Set<? extends E> edgeSubset)Creates a new weighted directed subgraph.ListenableDirectedWeightedGraph(WeightedGraph<V,E> base)Creates a new listenable directed weighted graph.ListenableUndirectedWeightedGraph(WeightedGraph<V,E> base)Creates a new listenable undirected weighted graph.UndirectedWeightedSubgraph(WeightedGraph<V,E> base)Creates a new weighted undirected induced subgraph with all vertices included.UndirectedWeightedSubgraph(WeightedGraph<V,E> base, java.util.Set<? extends V> vertexSubset)Creates a new weighted undirected induced subgraph.UndirectedWeightedSubgraph(WeightedGraph<V,E> base, java.util.Set<? extends V> vertexSubset, java.util.Set<? extends E> edgeSubset)Creates a new undirected weighted subgraph. -
Uses of WeightedGraph in org.jgrapht.graph.builder
Classes in org.jgrapht.graph.builder with type parameters of type WeightedGraph Modifier and Type Class Description classDirectedWeightedGraphBuilder<V,E,G extends DirectedGraph<V,E> & WeightedGraph<V,E>>A builder class for directed weighted graphs}.classDirectedWeightedGraphBuilderBase<V,E,G extends DirectedGraph<V,E> & WeightedGraph<V,E>,B extends DirectedWeightedGraphBuilderBase<V,E,G,B>>Base class forDirectedWeightedGraphBuilderfor extending.classUndirectedWeightedGraphBuilder<V,E,G extends UndirectedGraph<V,E> & WeightedGraph<V,E>>A builder class for undirected weighted graphs.classUndirectedWeightedGraphBuilderBase<V,E,G extends UndirectedGraph<V,E> & WeightedGraph<V,E>,B extends UndirectedWeightedGraphBuilderBase<V,E,G,B>>Base class forUndirectedWeightedGraphBuilderfor extending.
-