summaryrefslogtreecommitdiffstats
path: root/searchlib/src/main/java/com/yahoo/searchlib/mlr/ga/CaseList.java
blob: 58a252a2c6603c6f157b9c4593462d77baee664f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.searchlib.mlr.ga;

import java.util.List;

/**
 * A producer of a list of cases for function training.
 *
 * @author bratseth
 */
public interface CaseList {

    public List<TrainingSet.Case> cases();

}