Uses of Interface
net.walend.digraph.MutableGEDigraph

Packages that use MutableGEDigraph
net.walend.digraph This package contains a kit for working with directed graphs. 
net.walend.digraph.path.test   
net.walend.digraph.test   
net.walend.measured.test This package contains a kit for testing measuring paths. 
 

Uses of MutableGEDigraph in net.walend.digraph
 

Subinterfaces of MutableGEDigraph in net.walend.digraph
 interface IndexedMutableGEDigraph
          Indexed mutators
 

Classes in net.walend.digraph that implement MutableGEDigraph
 class MutableHashGEDigraph
           
 class MutableLMGEDigraph
          This class implements the GEDigraph interface using an ArrayList and a boolean matrix and keeps an additional int[][] that shows what nodes can be reached from what other nodes.
 class MutableMatrixGEDigraph
          A MutableGEDigraph backed by an ArrayList of nodes and a boolean[][] matrix of edges.
 

Methods in net.walend.digraph with parameters of type MutableGEDigraph
static void GEDigraphAlgebra.intersectGEDigraphs(GEDigraph dg1, GEDigraph dg2, MutableGEDigraph intersection)
          Returns a GEDigraph containing the intersection of dg1 and dg2.
static void GEDigraphAlgebra.unionGEDigraphs(GEDigraph dg1, GEDigraph dg2, MutableGEDigraph union)
          Returns a GEDigraph containing the intersection of dg1 and dg2.
 

Uses of MutableGEDigraph in net.walend.digraph.path.test
 

Methods in net.walend.digraph.path.test that return MutableGEDigraph
protected  MutableGEDigraph MutableListGEPathTest.getTestMutableGEDigraph()
           
protected  MutableGEDigraph MutableListGEPathTest.getEmptyTestMutableGEDigraph()
           
protected  MutableGEDigraph ListGEPathTest.getTestMutableGEDigraph()
           
protected  MutableGEDigraph ListGEPathTest.getEmptyTestMutableGEDigraph()
           
 

Uses of MutableGEDigraph in net.walend.digraph.test
 

Methods in net.walend.digraph.test that return MutableGEDigraph
protected  MutableGEDigraph MutableLMGEDigraphTest.getTestMutableGEDigraph()
           
protected  MutableGEDigraph MutableLMGEDigraphTest.getEmptyTestMutableGEDigraph()
           
protected abstract  MutableGEDigraph GEDigraphTest.getTestMutableGEDigraph()
           
protected abstract  MutableGEDigraph GEDigraphTest.getEmptyTestMutableGEDigraph()
           
protected  MutableGEDigraph MutableMatrixGEDigraphTest.getTestMutableGEDigraph()
           
protected  MutableGEDigraph MutableMatrixGEDigraphTest.getEmptyTestMutableGEDigraph()
           
protected  MutableGEDigraph MatrixGEDigraphTest.getTestMutableGEDigraph()
           
protected  MutableGEDigraph MatrixGEDigraphTest.getEmptyTestMutableGEDigraph()
           
protected  MutableGEDigraph LMGEDigraphTest.getTestMutableGEDigraph()
           
protected  MutableGEDigraph LMGEDigraphTest.getEmptyTestMutableGEDigraph()
           
protected  MutableGEDigraph MutableHashGEDigraphTest.getTestMutableGEDigraph()
           
protected  MutableGEDigraph MutableHashGEDigraphTest.getEmptyTestMutableGEDigraph()
           
protected  MutableGEDigraph HashGEDigraphTest.getTestMutableGEDigraph()
           
protected  MutableGEDigraph HashGEDigraphTest.getEmptyTestMutableGEDigraph()
           
 

Methods in net.walend.digraph.test with parameters of type MutableGEDigraph
static void TestGEDigraphFactory.fillTestGEDigraph(MutableGEDigraph digraph)
          Fills in the digraph with nodes {D,A,F,B,E,G,C} edges {(C,D,cd),(E,B,eb),(E,F,ef),(D,E,de),(B,C,bc),(A,B,ab)}.
 

Uses of MutableGEDigraph in net.walend.measured.test
 

Methods in net.walend.measured.test that return MutableGEDigraph
protected  MutableGEDigraph ShortestGEPathTest.getTestMutableGEDigraph()
           
protected  MutableGEDigraph ShortestGEPathTest.getEmptyTestMutableGEDigraph()
           
 



Copyright (c) 2001, 2002, David Walend