thresholdinfo.java

来自「基于数据挖掘的决策树改进算法和贝叶斯改进算法」· Java 代码 · 共 24 行

JAVA
24
字号
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 + =
减小字号Ctrl + -
显示快捷键?