package ca.joeltherrien.randomforest; import java.util.List; /** * Very simple class that contains two lists; it's essentially a tuple. * * @author joel * */ public class Split { public final List> leftHand; public final List> rightHand; public Split(List> leftHand, List> rightHand){ this.leftHand = leftHand; this.rightHand = rightHand; } }