Package | Description |
---|---|
com.mxgraph.analysis |
This package provides various algorithms for graph analysis, such as
shortest path and minimum spanning tree.
|
com.mxgraph.costfunction | |
com.mxgraph.generatorfunction |
Modifier and Type | Class and Description |
---|---|
class |
mxConstantCostFunction
Implements a cost function for a constant cost per traversed cell.
|
class |
mxDistanceCostFunction
Implements a cost function for the Euclidean length of an edge.
|
Modifier and Type | Method and Description |
---|---|
Object[] |
mxGraphAnalysis.getMinimumSpanningTree(mxGraph graph,
Object[] v,
mxICostFunction cf,
boolean directed)
Returns the minimum spanning tree (MST) for the graph defined by G=(E,V).
|
Object[] |
mxGraphAnalysis.getMinimumSpanningTree(mxGraph graph,
Object[] v,
Object[] e,
mxICostFunction cf)
Returns the minimum spanning tree (MST) for the graph defined by G=(E,V).
|
Object[] |
mxGraphAnalysis.getShortestPath(mxGraph graph,
Object from,
Object to,
mxICostFunction cf,
int steps,
boolean directed)
Returns the shortest path between two cells or their descendants
represented as an array of edges in order of traversal.
|
mxCellState[] |
mxGraphAnalysis.sort(mxCellState[] states,
mxICostFunction cf)
Returns a sorted set for
cells with respect to
cf . |
double |
mxGraphAnalysis.sum(mxCellState[] states,
mxICostFunction cf)
Returns the sum of all cost for
cells with respect to
cf . |
Modifier and Type | Class and Description |
---|---|
class |
mxConstCostFunction |
class |
mxCostFunction |
class |
mxDoubleValCostFunction
A cost function that assumes that edge value is of type "double" or "String" and returns that value.
|
Modifier and Type | Class and Description |
---|---|
class |
mxGeneratorConstFunction |
class |
mxGeneratorFunction |
class |
mxGeneratorRandomFunction |
class |
mxGeneratorRandomIntFunction |
Copyright (c) 2010 Gaudenz Alder, David Benson. All rights reserved.