| 900 | |
| 901 | template <typename VectorType> |
| 902 | VectorType vmult(VectorType const& a, VectorType const& b) { |
| 903 | return a.piecewiseMultiply(b); |
| 904 | } |
| 905 | |
| 906 | template <typename VectorType> |
| 907 | VectorType vdiv(VectorType const& a, VectorType const& b) { |
no test coverage detected