package ac.essex.gp.neural;

/**
 * Provides training data to the neural network. This consists of a set of inputLayer and
 * a set of outputLayer.
 *
 * @author Olly Oechsle, University of Essex, Date: 06-Mar-2007
 * @version 1.0
 */
public class TrainingData {

    protected double[] inputs;
    protected double[] outputs;

    public TrainingData(double[] inputs, double[] outputs) {
        this.inputs = inputs;
        this.outputs = outputs;
    }
}
