Lines Matching refs:fst2
93 // <code>fst1</code> and <code>fst2</code> are equivalent. The input
113 bool Equivalent(const Fst<Arc> &fst1, const Fst<Arc> &fst2) {
121 if (fst2.Properties(props, true) != props) {
127 || (fst2.Properties(kUnweighted , true) != kUnweighted)) {
129 VectorFst<Arc> efst2(fst2);
144 enum { FST1 = 1, FST2 = 2 }; // Required by Util::MapState(...)
147 MappedId s2 = Util::MapState(fst2.Start(), FST2);
157 if (Util::IsFinal(fst1, s1) != Util::IsFinal(fst2, s2)) {
161 // fst1 and fst2: input labels mapped to pairs of MappedId's
163 // and fst2, respectively.
203 ArcIterator<Fst<Arc> > arc_iter(fst2, Util::UnMapState(s2));
209 arc_pairs[arc.ilabel].second = Util::MapState(arc.nextstate, FST2);
220 if (Util::IsFinal(fst1, p.first) != Util::IsFinal(fst2, p.second)) {