📄 thresholdinfo.java
字号:
package shared;
import java.lang.*;
/** Class structure used for maitaining threshold information in
* Entropy to make score arrays.
*/
public class ThresholdInfo {
/** The index of this threshold.
*/
public int index;
/** The score value for this particular threshold.
*/
public double score;
/** The weight of this particular threshold.
*/
public double weight;
/** Constructor.
*/
public ThresholdInfo(){
index = Globals.UNDEFINED_INT;
score = Globals.UNDEFINED_REAL;
weight = Globals.UNDEFINED_REAL;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -