(Vec b)
| 157 | } |
| 158 | |
| 159 | @Override |
| 160 | public void mutablePairwiseMultiply(Vec b) |
| 161 | { |
| 162 | //this would require multiple different shifts, so we have to fold it back into the base vector |
| 163 | base.mutableAdd(shift); |
| 164 | shift = 0; |
| 165 | base.mutablePairwiseMultiply(b); |
| 166 | } |
| 167 | |
| 168 | |
| 169 | // No real performance to gain by re-implementing matrix mul ops |
nothing calls this directly
no test coverage detected