package ac.essex.gp.markov;

/**
 * A Markov State, such as "Sunny"
 * States have an ID (which must be zero indexed) and a name.
 * @author Olly Oechsle, University of Essex, Date: 05-Mar-2007
 * @version 1.0
 */
public class ObservedState {

    protected int id;
    protected String name;

    public ObservedState(int id, String name) {
        this.id = id;
        this.name = name;
    }
    
}
