com.meliorbis.numerics.convergence.Criterion Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Numerics Show documentation
Show all versions of Numerics Show documentation
A library for working with large multi-dimensional arrays and the functions they represent
/**
*
*/
package com.meliorbis.numerics.convergence;
/**
* @author Tobias Grasl
*
*/
public interface Criterion
{
/**
* Gets the criterion Value
*
* @return A double giving the value of the criterion
*/
public double getValue();
static final Criterion INITIAL = new Criterion() {
@Override
public double getValue()
{
return Double.MAX_VALUE;
}
@Override
public String toString()
{
return "INITIAL";
}
};
}