largeRCRF-Java/src/ca/joeltherrien/randomforest/Split.java

21 lines
393 B
Java
Raw Normal View History

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<Y> {
public final List<Row<Y>> leftHand;
public final List<Row<Y>> rightHand;
public Split(List<Row<Y>> leftHand, List<Row<Y>> rightHand){
this.leftHand = leftHand;
this.rightHand = rightHand;
}
}