utils.AlgorithmInput Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jstat Show documentation
Show all versions of jstat Show documentation
Java Library for Statistical Analysis.
The newest version!
package utils;
public class AlgorithmInput {
public int numIterations = 0;
public double tolerance = 1.0e-8;
public boolean showIterations = true;
}