Home | History | Annotate | Download | only in fst

Lines Matching defs:Impl

203   FactorWeightFstImpl(const FactorWeightFstImpl<A, F> &impl)
204 : CacheImpl<A>(impl),
205 fst_(impl.fst_->Copy(true)),
206 delta_(impl.delta_),
207 mode_(impl.mode_),
208 final_ilabel_(impl.final_ilabel_),
209 final_olabel_(impl.final_olabel_) {
211 SetProperties(impl.Properties(), kCopyProperties);
212 SetInputSymbols(impl.InputSymbols());
213 SetOutputSymbols(impl.OutputSymbols());
267 // Set error if found; return FST impl properties.
409 typedef FactorWeightFstImpl<A, F> Impl;
412 : ImplToFst<Impl>(new Impl(fst, FactorWeightOptions<A>())) {}
415 : ImplToFst<Impl>(new Impl(fst, opts)) {}
419 : ImplToFst<Impl>(fst, copy) {}
434 Impl *GetImpl() const { return ImplToFst<Impl>::GetImpl(); }