Uses of Interface
edu.uci.ics.jung.graph.KPartiteGraph
-
Packages that use KPartiteGraph Package Description edu.uci.ics.jung.algorithms.transformation Mechanisms for graph transformation. -
-
Uses of KPartiteGraph in edu.uci.ics.jung.algorithms.transformation
Methods in edu.uci.ics.jung.algorithms.transformation with parameters of type KPartiteGraph Modifier and Type Method Description static <V,E>
Graph<V,E>FoldingTransformer. foldKPartiteGraph(KPartiteGraph<V,E> g, com.google.common.base.Predicate<V> p, com.google.common.base.Supplier<Graph<V,E>> graph_factory, com.google.common.base.Supplier<E> edge_factory)
Convertsg
into a unipartite graph whose vertex set is the vertices ofg
's partitionp
.static <V,E>
Graph<V,java.util.Collection<V>>FoldingTransformer. foldKPartiteGraph(KPartiteGraph<V,E> g, com.google.common.base.Predicate<V> p, com.google.common.base.Supplier<Graph<V,java.util.Collection<V>>> graph_factory)
Convertsg
into a unipartite graph whose vertices are the vertices ofg
's partitionp
, and whose edges consist of collections of the intermediate vertices from other partitions.
-