summaryrefslogtreecommitdiff
path: root/gi/posterior-regularisation/prjava/src/optimization/stopCriteria/ValueDifference.java
blob: e5d07229bd3e54306aa7e3169682addefb180437 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package optimization.stopCriteria;

import optimization.gradientBasedMethods.Objective;
import optimization.util.MathUtils;

public class ValueDifference implements StopingCriteria{
	
	/**
	 * Stop if the different between values is smaller than a treshold
	 */
	protected double valueConvergenceValue=0.01;
	protected double previousValue = Double.NaN;
	protected double currentValue = Double.NaN;
	
	public ValueDifference(double valueConvergenceValue){
		this.valueConvergenceValue = valueConvergenceValue;
	}
	
	public void reset(){
		previousValue = Double.NaN;
		currentValue = Double.NaN;
	}
	
	public boolean stopOptimization(Objective obj){
		if(Double.isNaN(currentValue)){
			currentValue = obj.getValue();
			return false;
		}else {
			previousValue = currentValue;
			currentValue = obj.getValue();
			if(previousValue - currentValue   < valueConvergenceValue){
//				System.out.println("Leaving different in values is to small: Prev " 
//						+ previousValue + " Curr: " + currentValue 
//						+ " diff: " + (previousValue - currentValue));
				return true;
			}
			return false;
		}
		
	}
}