Home | History | Annotate | Download | only in fst

Lines Matching defs:arcs

83   // Compute arcs and final weight for state 's'
86 // Returns arcs of expanded state.
87 vector<Arc> &Arcs() { return arcs_; }
138 // in the arcs vector of the state being expanded. 'e' corresponds
146 vector<Arc> arcs_; // Arcs of state being expanded
302 vector<Arc> &arcs = rmeps_state.Arcs();
303 fst->ReserveArcs(state, arcs.size());
304 while (!arcs.empty()) {
305 fst->AddArc(state, arcs.back());
306 arcs.pop_back();
342 // where V = # of states visited, E = # of arcs.
483 vector<A> &arcs = rmeps_state_.Arcs();
484 while (!arcs.empty()) {
485 PushArc(s, arcs.back());
486 arcs.pop_back();
512 // where v = # of states visited, e = # of arcs visited. Constant time