Lines Matching refs:w2
151 const SparsePowerWeight<W, K> &w2) { in Plus() argument
154 SparseTupleWeightMap(&ret, w1, w2, operator_mapper); in Plus()
161 const SparsePowerWeight<W, K> &w2) { in Times() argument
164 SparseTupleWeightMap(&ret, w1, w2, operator_mapper); in Times()
171 const SparsePowerWeight<W, K> &w2,
175 SparseTupleWeightMap(&ret, w1, w2, operator_mapper);
182 const SparsePowerWeight<W, K> &w2) { in DotProduct() argument
183 const SparsePowerWeight<W, K>& product = Times(w1, w2); in DotProduct()
193 const SparsePowerWeight<W, K> &w2,
197 SparseTupleWeightMap(&ret, w1, w2, operator_mapper);
203 const SparsePowerWeight<W, K> &w2) { in Times() argument
205 return Times(w1, w2); in Times()
211 SparsePowerWeight<W, K> w2(k); in Times()
212 return Times(w1, w2); in Times()
219 SparsePowerWeight<W, K> w2(k);
220 return Divide(w1, w2, divide_type);