Home | History | Annotate | Download | only in fst

Lines Matching full:ofst

209 // 'ofst' contains states and arcs that belong to a successful path in
212 // kNoStateId', 'ofst' will be restricted further to have at most
218 MutableFst<Arc> *ofst,
228 ofst->SetProperties(kError, kError);
231 ofst->DeleteStates();
232 ofst->SetInputSymbols(ifst.InputSymbols());
233 ofst->SetOutputSymbols(ifst.OutputSymbols());
261 copy[s] = ofst->AddState();
262 ofst->SetStart(copy[s]);
278 ofst->SetFinal(copy[s], ifst.Final(s));
290 (ofst->NumStates() >= opts.state_threshold))
300 copy[arc.nextstate] = ofst->AddState();
301 ofst->AddArc(copy[s], Arc(arc.ilabel, arc.olabel, arc.weight,
319 // argument. 'ofst' contains states and arcs that belong to a
322 // 'state_threshold != kNoStateId', 'ofst' will be restricted further
328 MutableFst<Arc> *ofst,
334 Prune(ifst, ofst, opts);