We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ea7caa commit 4c549b9Copy full SHA for 4c549b9
content/numerical/FFTPolynomial.h
@@ -45,7 +45,7 @@ poly &operator/=(poly &a, poly &b) {
45
int s = sz(a) - sz(b) + 1;
46
reverse(all(a)), reverse(all(b));
47
a.resize(s), b.resize(s);
48
- a = a * inverse(b);
+ a *= inverse(b);
49
a.resize(s), reverse(all(a));
50
return a;
51
}
0 commit comments