Package com.mxgraph.analysis
Class mxConstantCostFunction
java.lang.Object
com.mxgraph.analysis.mxConstantCostFunction
- All Implemented Interfaces:
mxICostFunction
Implements a cost function for a constant cost per traversed cell.
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiondouble
getCost
(mxCellState state) Evaluates the cost of the given cell state.
-
Field Details
-
cost
protected double cost
-
-
Constructor Details
-
mxConstantCostFunction
public mxConstantCostFunction(double cost) - Parameters:
cost
- the cost value for this function
-
-
Method Details
-
getCost
Description copied from interface:mxICostFunction
Evaluates the cost of the given cell state.- Specified by:
getCost
in interfacemxICostFunction
- Parameters:
state
- The cell state to be evaluated- Returns:
- Returns the cost to traverse the given cell state.
-