Skip to content

Commit 4c549b9

Browse files
committed
made a small change
1 parent 5ea7caa commit 4c549b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/numerical/FFTPolynomial.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ poly &operator/=(poly &a, poly &b) {
4545
int s = sz(a) - sz(b) + 1;
4646
reverse(all(a)), reverse(all(b));
4747
a.resize(s), b.resize(s);
48-
a = a * inverse(b);
48+
a *= inverse(b);
4949
a.resize(s), reverse(all(a));
5050
return a;
5151
}

0 commit comments

Comments
 (0)