Home | History | Annotate | Download | only in fst

Lines Matching refs:w2

59   W operator()(const W &w1, const W &w2) const { return Plus(w1, w2); }
72 Weight operator()(const Weight &w1, const Weight &w2) const {
74 StringWeightIterator<L, S> iter2(w2);
79 } else if (w1.Size() == 0 || w2.Size() == 0) {
83 } else if (w2 == Weight::Zero()) {
102 Weight operator()(const Weight &w1, const Weight &w2) const {
103 return Weight(label_common_divisor_(w1.Value1(), w2.Value1()),
104 weight_common_divisor_(w1.Value2(), w2.Value2()));