From 1f91b7ec08909cdcb69118619723ed0d05338ff3 Mon Sep 17 00:00:00 2001 From: Desh Raj Date: Sat, 25 Aug 2018 20:27:27 -0400 Subject: [PATCH] changed fst to object --- src/decoder/lattice-faster-decoder.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/decoder/lattice-faster-decoder.cc b/src/decoder/lattice-faster-decoder.cc index deaeee87996..9f482519535 100644 --- a/src/decoder/lattice-faster-decoder.cc +++ b/src/decoder/lattice-faster-decoder.cc @@ -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()) {