Skip to content

Commit

Permalink
changed fst to object
Browse files Browse the repository at this point in the history
  • Loading branch information
desh2608 committed Aug 26, 2018
1 parent 098c2e6 commit 1f91b7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/decoder/lattice-faster-decoder.cc
Original file line number Diff line number Diff line change
Expand Up @@ -811,7 +811,7 @@ void LatticeFasterDecoder::ProcessNonemitting(BaseFloat cutoff) {
KALDI_ASSERT(queue_.empty());
for (const Elem *e = toks_.GetList(); e != NULL; e = e->tail) {
StateId key = e->key;
if (fst_-.NumInputEpsilons(key) != 0)
if (fst_.NumInputEpsilons(key) != 0)
queue_.push_back(key);
}
if (queue_.empty()) {
Expand Down

0 comments on commit 1f91b7e

Please sign in to comment.