Uses of Interface
edu.uci.ics.jung.graph.KPartiteGraph

Packages that use KPartiteGraph
edu.uci.ics.jung.algorithms.transformation   
edu.uci.ics.jung.graph.impl Implementations of the JUNG vertex, edge, and graph interfaces. 
edu.uci.ics.jung.io Provides a set of graph file format interpreters for loading graphs from disk. 
samples.graph.southern   
scratch.danyel   
 

Uses of KPartiteGraph in edu.uci.ics.jung.algorithms.transformation
 

Methods in edu.uci.ics.jung.algorithms.transformation with parameters of type KPartiteGraph
protected  void FoldingTransformer.checkGraphConstraints(KPartiteGraph g)
          Checks for, and rejects, mixed-mode graphs, and sets the undirected class variable state.
 Graph FoldingTransformer.fold(KPartiteGraph g, Predicate p)
          Equivalent to fold(g, p, null).
 Graph FoldingTransformer.fold(KPartiteGraph g, Predicate p, NumberEdgeValue nev)
           Converts g into a unipartite graph whose vertex set is the vertices whose partition is specified by p.
 

Uses of KPartiteGraph in edu.uci.ics.jung.graph.impl
 

Classes in edu.uci.ics.jung.graph.impl that implement KPartiteGraph
 class KPartiteSparseGraph
          An implementation of KPartiteGraph based on SparseGraph.
 

Uses of KPartiteGraph in edu.uci.ics.jung.io
 

Methods in edu.uci.ics.jung.io that return KPartiteGraph
 KPartiteGraph BipartiteGraphReader.load(Reader reader)
          Creates a KPartiteGraph (where k = 2) based on connection data gathered from a Reader.
 

Uses of KPartiteGraph in samples.graph.southern
 

Methods in samples.graph.southern with parameters of type KPartiteGraph
protected static void TestSouthernWomenBipartite.dumpNames(KPartiteGraph bpg, StringLabeller women, StringLabeller dates)
           
 

Constructors in samples.graph.southern with parameters of type KPartiteGraph
BipartiteVertexRenderer(KPartiteGraph bpg, StringLabeller women, StringLabeller dates)
           
TestSouthernWomenBipartite.RemoveAndRefold(KPartiteGraph kpg)
           
 

Uses of KPartiteGraph in scratch.danyel
 

Constructors in scratch.danyel with parameters of type KPartiteGraph
BPVR(KPartiteGraph bpg, StringLabeller women, StringLabeller dates)