Skip to content

Commit 20302fd

Browse files
author
linyiqun
committedAug 2, 2015
维特比算法宏定义变量类
维特比算法宏定义变量类
1 parent 13f6c78 commit 20302fd

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
 
+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
package DataMining_Viterbi;
2+
3+
/**
4+
* 基本变量定义类
5+
* @author lyq
6+
*
7+
*/
8+
public class BaseNames {
9+
//日期天数下标
10+
public static final int DAY1 = 0;
11+
public static final int DAY2 = 1;
12+
public static final int DAY3 = 2;
13+
14+
//天气属性类别
15+
public static final int WEATHER_SUNNY = 0;
16+
public static final int WEATHER_CLOUDY = 1;
17+
public static final int WEATHER_RAINY = 2;
18+
19+
//湿度属性类别
20+
public static final int HUMIDITY_DRY = 0;
21+
public static final int HUMIDITY_DRYISH = 1;
22+
public static final int HUMIDITY_DAMP = 1;
23+
public static final int HUMIDITY_SOGGY = 1;
24+
}

0 commit comments

Comments
 (0)