Uses of Interface
org.jgraph.algebra.CostFunction

Packages that use CostFunction
org.jgraph.algebra   
org.jgraph.util   
 

Uses of CostFunction in org.jgraph.algebra
 

Classes in org.jgraph.algebra that implement CostFunction
 class DefaultCostFunction
           
 

Uses of CostFunction in org.jgraph.util
 

Methods in org.jgraph.util that return CostFunction
static CostFunction JGraphUtilities.createDefaultCostFunction(JGraph graph)
           
 

Methods in org.jgraph.util with parameters of type CostFunction
static java.lang.Object[] JGraphUtilities.getShortestPath(GraphModel model, java.lang.Object from, java.lang.Object to, CostFunction cf, boolean directed)
          Returns the ShortestPath between two cells or their descendants.
static java.lang.Object[] JGraphUtilities.getSpanningTree(JGraph graph, CostFunction cf)
          Returns the shortest spanning tree.
static java.util.SortedSet JGraphUtilities.sort(JGraph graph, java.lang.Object[] cells, CostFunction cf)