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/ntt.cpp | |
| parent | 631335a9c1dd0fba0e17977253d0a4b033aee59a (diff) | |
renamed ntt and bitwiseConv function + more multiply functions
Diffstat (limited to 'math/transforms/ntt.cpp')
| -rw-r--r-- | math/transforms/ntt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/math/transforms/ntt.cpp b/math/transforms/ntt.cpp index 18d5bd8..ca605d3 100644 --- a/math/transforms/ntt.cpp +++ b/math/transforms/ntt.cpp @@ -1,6 +1,6 @@ constexpr ll mod = 998244353, root = 3; -void fft(vector<ll>& a, bool inv = false) { +void ntt(vector<ll>& a, bool inv = false) { int n = sz(a); auto b = a; ll r = inv ? powMod(root, mod - 2, mod) : root; |
