float logScore;
// Find the HMM state for this node
SenoneHMMState state = (SenoneHMMState) graph.getNode(index).getObject();
if ((state != null) && (state.isEmitting())) {
// Compute the scores for each mixture component in this state
componentScores = state.calculateComponentScore(curFeature);
// Compute the overall score for this state
logScore = state.getScore(curFeature);
// For CI models, for now, we only try to use mixtures
// with one component
assert componentScores.length == 1;