kumulant/com.eignex.kumulant.stat.regression.tree/SplitInfo SplitInfo data class SplitInfo(val top1: Double, val top2: Double, val bestIndex: Int)(source)Result of evaluating all candidate splits at a leaf: best score, runner-up, best index. Members Constructors SplitInfo Link copied to clipboard constructor(top1: Double, top2: Double, bestIndex: Int) Properties bestIndex Link copied to clipboard val bestIndex: IntIndex into the leaf's candidate list of the best split (-1 if none qualified). top1 Link copied to clipboard val top1: DoubleBest candidate's score. top2 Link copied to clipboard val top2: DoubleRunner-up's score. SplitInfo constructor(top1: Double, top2: Double, bestIndex: Int)(source) bestIndex val bestIndex: Int(source)Index into the leaf's candidate list of the best split (-1 if none qualified). top1 val top1: Double(source)Best candidate's score. top2 val top2: Double(source)Runner-up's score.