package ac.essex.gp.markov;

/**
 * Matching the most likely system to a sequence of observations -evaluation, solved using the forward algorithm
 *
 * We want to find the probability of an observed sequence given an HMM. That is, the parameters pi, A, B are known.
 *
 * We have an HMM describing the weather and its relation to the state of the seaweed, and a sequence of seaweed observations.
 *
 * @author Olly Oechsle, University of Essex, Date: 05-Mar-2007
 * @version 1.0
 */
public class ForwardAlgorithm {

    public ForwardAlgorithm() {
        // finds the probability of an observed sequence.
    }

}
