summaryrefslogtreecommitdiff
path: root/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/CompareValue.java
blob: be7f00cde765f6e07c6655eddef51f664bb8d618 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/**
 * Description: Global value for comparison.
 *
 * @ Author        Create/Modi     Note
 * Xiaofeng Xie    Jun 15, 2002
 * Xiaofeng Xie    Feb 18, 2004
 *
 * @version 1.0
 * @Since MAOS1.0
 */


package net.adaptivebox.global;

public class CompareValue {
  public static final int LARGER_THAN = 2;
  public static final int EQUAL_TO = 1;
  public static final int LESS_THAN = 0;
}