| 61 | } |
| 62 | |
| 63 | SH operator+(const SH& other) const |
| 64 | { |
| 65 | SH result; |
| 66 | for(uint64 i = 0; i < N; ++i) |
| 67 | result.Coefficients[i] = Coefficients[i] + other.Coefficients[i]; |
| 68 | return result; |
| 69 | } |
| 70 | |
| 71 | SH& operator-=(const SH& other) |
| 72 | { |
nothing calls this directly
no outgoing calls
no test coverage detected