Home | History | Annotate | Download | only in grxmlcompile

Lines Matching full:prefix_fst

792   fst::StdVectorFst prefix_fst;
801 stateSt = prefix_fst.AddState();
802 stateEn = prefix_fst.AddState();
803 prefix_fst.SetStart(stateSt); // arg is state ID
804 prefix_fst.SetFinal(stateEn, 0.0); // 1st arg is state ID, 2nd arg weight
805 prefix_fst.AddArc(stateSt, fst::StdArc(pau_word, pau_word, 0.0, stateEn));
877 fst::Concat( &prefix_fst, g_fst);
878 if(debug) prefix_fst.Write( grxmlBasename + ".G2");
882 fst::ArcSort(&prefix_fst, fst::StdILabelCompare());
884 fst::Compose(l_fst, prefix_fst, &lg_fst, copts);