Home | History | Annotate | Download | only in fst

Lines Matching defs:Weight

35 // transduces string x to y with weight a and FST2 transduces string w
36 // to v with weight b, then their concatenation transduces string xw
50 typedef typename Arc::Weight Weight;
93 Weight final = fst1->Final(s1);
94 if (final != Weight::Zero()) {
95 fst1->SetFinal(s1, Weight::Zero());
116 typedef typename Arc::Weight Weight;
145 Weight final = fst1.Final(s1);
146 fst2->ReserveArcs(s2, fst1.NumArcs(s1) + (final != Weight::Zero() ? 1 : 0));
147 if (final != Weight::Zero())
182 // delayed Fst. If FST1 transduces string x to y with weight a and FST2
183 // transduces string w to v with weight b, then their concatenation
198 typedef typename A::Weight Weight;