Source: HMM/include/state.h
|
|
|
|
// Copyright (C) 1999 Jean-Marc Valin
#ifndef STATE_H
#define STATE_H
#include "gmm.h"
class Transition {
protected:
/**The log probability of transition*/
float probability;
/**Transition going to ... (NULL means out)*/
State *state;
public:
};
/**State class*/
class State {
/**Corresponding GMM*/
RCPtr<GMM> mixture;
///Log probability for transition to next state
//vector<Transition> transitions;
};
#endif
Generated by: jmvalin@usw-pr-shell2 on Mon Jun 24 00:06:40 2002, using kdoc 2.0a40. |