refdiff.core.diff.ThresholdsProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of refdiff-core Show documentation
Show all versions of refdiff-core Show documentation
An automated tool to detect refactorings in version histories
package refdiff.core.diff;
public class ThresholdsProvider {
private double t1 = 0.5;
private double t2 = 0.5;
public double getMinimum() {
return t1;
}
public double getIdeal() {
return t2;
}
}