summaryrefslogtreecommitdiff
path: root/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/GlobalCompare.java
blob: 1721b240217c656c9d4c0feb4a0ff9c02f16a77e (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
42
43
44
/**
 * Description: Global package for comparison.
 *
 * @ Author        Create/Modi     Note
 * Xiaofeng Xie    Jun 15, 2002    xiaofengxie@tsinghua.org.cn
 *
 *
 * @version 1.0
 * @Since MAOS1.0
 */


package net.adaptivebox.global;

public class GlobalCompare {

/* compare the data1 and data2, if data1=data2, return 0
 * if data1 < data2, return LESS_THAN, else if data1 > data2, LARGER_THAN
 **/
  static public int compare(double data1, double data2) {
    if (data1 < data2)
      return CompareValue.LESS_THAN;
    else if (data1 > data2)
      return CompareValue.LARGER_THAN;
    else
      return CompareValue.EQUAL_TO;
  }

/* check the magnitude of two array, the frontial is more important
 **/
  public static int compareArray(double[] fit1, double[] fit2) {
    if (fit1.length!=fit2.length) {
      return CompareValue.INVALID;  //error
    }
    for (int i=0; i<fit1.length; i++) {
      if (fit1[i]>fit2[i]) {
        return CompareValue.LARGER_THAN; //Large than
      } else if (fit1[i]<fit2[i]){
        return CompareValue.LESS_THAN; //Less than
      }
    }
    return CompareValue.EQUAL_TO; //same
  }
}