Home | History | Annotate | Download | only in lib

Lines Matching refs:Fst

22 #include "fst/lib/compose.h"
24 namespace fst {
31 // version is a delayed Fst. Only strings that are in both automata
49 IntersectFst(const Fst<A> &fst1, const Fst<A> &fst2)
60 IntersectFst(const Fst<A> &fst1, const Fst<A> &fst2,
71 IntersectFst(const IntersectFst<A> &fst) : ComposeFst<A>(fst) {}
84 explicit StateIterator(const IntersectFst<A> &fst)
85 : StateIterator< ComposeFst<A> >(fst) {}
96 ArcIterator(const IntersectFst<A> &fst, StateId s)
97 : ArcIterator< ComposeFst<A> >(fst, s) {}
118 void Intersect(const Fst<Arc> &ifst1, const Fst<Arc> &ifst2,
128 } // namespace fst