Home | History | Annotate | Download | only in fst

Lines Matching refs:w1

150 inline SparsePowerWeight<W, K> Plus(const SparsePowerWeight<W, K> &w1,
154 SparseTupleWeightMap(&ret, w1, w2, operator_mapper);
160 inline SparsePowerWeight<W, K> Times(const SparsePowerWeight<W, K> &w1,
164 SparseTupleWeightMap(&ret, w1, w2, operator_mapper);
170 inline SparsePowerWeight<W, K> Divide(const SparsePowerWeight<W, K> &w1,
175 SparseTupleWeightMap(&ret, w1, w2, operator_mapper);
181 inline const W& DotProduct(const SparsePowerWeight<W, K> &w1,
183 const SparsePowerWeight<W, K>& product = Times(w1, w2);
192 inline bool ApproxEqual(const SparsePowerWeight<W, K> &w1,
197 SparseTupleWeightMap(&ret, w1, w2, operator_mapper);
204 SparsePowerWeight<W, K> w1(k);
205 return Times(w1, w2);
209 inline SparsePowerWeight<W, K> Times(const SparsePowerWeight<W, K> &w1,
212 return Times(w1, w2);
216 inline SparsePowerWeight<W, K> Divide(const SparsePowerWeight<W, K> &w1,
220 return Divide(w1, w2, divide_type);