Searched refs:label_queue (Results 1 - 1 of 1) sorted by relevance

/external/openfst/src/include/fst/extensions/ngram/
H A Dngram-fst.h321 queue<pair<StateId, Label> > label_queue; local
324 label_queue.push(make_pair(fst.Start(), 0));
327 label_queue.push(make_pair(aiter.Value().nextstate, aiter.Value().ilabel));
330 while (!label_queue.empty()) {
331 pair<StateId, Label> &now = label_queue.front();
339 label_queue.push(make_pair(arc.nextstate, now.second));
343 label_queue.pop();

Completed in 82 milliseconds