Home | History | Annotate | Download | only in fst

Lines Matching refs:opts

51   FactorWeightOptions(const CacheOptions &opts, float d,
54 : CacheOptions(opts), delta(d), mode(m), final_ilabel(il),
183 FactorWeightFstImpl(const Fst<A> &fst, const FactorWeightOptions<A> &opts)
184 : CacheImpl<A>(opts),
186 delta_(opts.delta),
187 mode_(opts.mode),
188 final_ilabel_(opts.final_ilabel),
189 final_olabel_(opts.final_olabel) {
413 FactorWeightFst(const Fst<A> &fst, const FactorWeightOptions<A> &opts)
414 : ImplToFst<Impl>(new Impl(fst, opts)) {}