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 AptSpringProcessor Show documentation
Show all versions of AptSpringProcessor Show documentation
This project contains the apt processor that implements all the checks enumerated in @Verify. It is a self contained, and
shaded jar.
The newest version!
/**
* 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