| 93 | |
| 94 | |
| 95 | SH operator*(const SH& other) const |
| 96 | { |
| 97 | SH result; |
| 98 | for(uint64 i = 0; i < N; ++i) |
| 99 | result.Coefficients[i] = Coefficients[i] * other.Coefficients[i]; |
| 100 | return result; |
| 101 | } |
| 102 | |
| 103 | SH& operator*=(const SH& other) |
| 104 | { |
nothing calls this directly
no outgoing calls
no test coverage detected