All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.meliorbis.numerics.convergence.Criterion Maven / Gradle / Ivy

Go to download

A library for working with large multi-dimensional arrays and the functions they represent

There is a newer version: 1.2
Show newest version
/**
 * 
 */
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";
		}
		
		
	};
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy