diff options
| author | Noobie99 <noob999noob999@gmail.com> | 2024-02-05 22:23:53 +0100 |
|---|---|---|
| committer | Noobie99 <noob999noob999@gmail.com> | 2024-02-05 22:23:53 +0100 |
| commit | f4dafa64e27e63d8cde5adcfbfa98e2a30fb7504 (patch) | |
| tree | 936fc0e98ac7e1ff6222b7657fb4a6b90d798080 /math/transforms/bitwiseTransforms.cpp | |
| parent | 631335a9c1dd0fba0e17977253d0a4b033aee59a (diff) | |
renamed ntt and bitwiseConv function + more multiply functions
Diffstat (limited to 'math/transforms/bitwiseTransforms.cpp')
| -rw-r--r-- | math/transforms/bitwiseTransforms.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/math/transforms/bitwiseTransforms.cpp b/math/transforms/bitwiseTransforms.cpp index 7d1f80d..28561da 100644 --- a/math/transforms/bitwiseTransforms.cpp +++ b/math/transforms/bitwiseTransforms.cpp @@ -1,4 +1,4 @@ -void fft(vector<ll>& a, bool inv = false) { +void bitwiseConv(vector<ll>& a, bool inv = false) { int n = sz(a); for (int s = 1; s < n; s *= 2) { for (int i = 0; i < n; i += 2 * s) { |
