com.mxgraph.analysis.mxConstantCostFunction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jgraphx Show documentation
Show all versions of jgraphx Show documentation
JGraphX is a Java Swing diagramming (graph visualisation) library
/**
* Copyright (c) 2007-2017, Gaudenz Alder
* Copyright (c) 2007-2017, JGraph Ltd
*/
package com.mxgraph.analysis;
import com.mxgraph.view.mxCellState;
/**
* Implements a cost function for a constant cost per traversed cell.
*/
public class mxConstantCostFunction implements mxICostFunction
{
/**
*
*/
protected double cost = 0;
/**
*
* @param cost the cost value for this function
*/
public mxConstantCostFunction(double cost)
{
this.cost = cost;
}
/**
*
*/
public double getCost(mxCellState state)
{
return cost;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy