diff options
| author | mzuenni <michi.zuendorf@gmail.com> | 2024-08-10 13:43:41 +0200 |
|---|---|---|
| committer | mzuenni <michi.zuendorf@gmail.com> | 2024-08-10 13:43:55 +0200 |
| commit | 4fae4bbe35af1eb349623123dc8f7e5f40f772e2 (patch) | |
| tree | 1214c5920a28ebcd667ea0bea69db24d64667981 /content/math | |
| parent | 009a8e3bade54db22f6814179066d4758294d83c (diff) | |
more tests
Diffstat (limited to 'content/math')
| -rw-r--r-- | content/math/transforms/seriesOperations.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/math/transforms/seriesOperations.cpp b/content/math/transforms/seriesOperations.cpp index 4743674..fc36f1e 100644 --- a/content/math/transforms/seriesOperations.cpp +++ b/content/math/transforms/seriesOperations.cpp @@ -4,7 +4,7 @@ vector<ll> poly_inv(const vector<ll>& a, int n) { vector<ll> a2 = a, q2 = q; a2.resize(2*len), q2.resize(2*len); ntt(q2); - for (int j : {0, 1}) { + for (int _ : {0, 1}) { ntt(a2); for (int i = 0; i < 2*len; i++) a2[i] = a2[i]*q2[i] % mod; ntt(a2, true); |
