Home | History | Annotate | Download | only in lib

Lines Matching refs:nextstate

311       StateId nextstate =
312 FindState(StateTuple(prefix_id, top.fst_id, top.nextstate));
313 AddArc(s, A(0, 0, fst->Final(fst_state), nextstate));
321 StateId nextstate =
322 FindState(StateTuple(tuple.prefix_id, tuple.fst_id, arc.nextstate));
323 AddArc(s, A(arc.ilabel, arc.olabel, arc.weight, nextstate));
332 tuple.fst_id, arc.nextstate);
344 StateId nextstate =
346 StateTuple(tuple.prefix_id, tuple.fst_id, arc.nextstate));
347 AddArc(s, A(arc.ilabel, arc.olabel, arc.weight, nextstate));
388 PrefixTuple(Label f, StateId s) : fst_id(f), nextstate(s) {}
391 StateId nextstate;
405 void Push(int fst_id, StateId nextstate) {
406 prefix_.push_back(PrefixTuple(fst_id, nextstate));
434 x.prefix_[i].nextstate != y.prefix_[i].nextstate) return false;
448 sum += x.prefix_[i].fst_id + x.prefix_[i].nextstate*kPrime0;
479 int PushPrefix(StackPrefix prefix, Label fst_id, StateId nextstate) {
480 prefix.Push(fst_id, nextstate);