Home | History | Annotate | Download | only in fst

Lines Matching refs:PairWeight

40 class LexicographicWeight : public PairWeight<W1, W2> {
42 using PairWeight<W1, W2>::Value1;
43 using PairWeight<W1, W2>::Value2;
44 using PairWeight<W1, W2>::SetValue1;
45 using PairWeight<W1, W2>::SetValue2;
46 using PairWeight<W1, W2>::Zero;
47 using PairWeight<W1, W2>::One;
48 using PairWeight<W1, W2>::NoWeight;
49 using PairWeight<W1, W2>::Quantize;
50 using PairWeight<W1, W2>::Reverse;
58 LexicographicWeight(const PairWeight<W1, W2>& w)
59 : PairWeight<W1, W2>(w) {}
61 LexicographicWeight(W1 w1, W2 w2) : PairWeight<W1, W2>(w1, w2) {
76 static const LexicographicWeight<W1, W2> zero(PairWeight<W1, W2>::Zero());
81 static const LexicographicWeight<W1, W2> one(PairWeight<W1, W2>::One());
87 PairWeight<W1, W2>::NoWeight());
105 return PairWeight<W1, W2>::Quantize();
109 return PairWeight<W1, W2>::Reverse();