File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change 13
13
Otherwise, use long doubles/NTT/FFTMod.
14
14
* Time: O(N \log N) with $N = |A|+|B|$ ($\tilde 1s$ for $N=2^{22}$)
15
15
* Status: somewhat tested
16
+ * Details: An in-depth examination of precision for both FFT and FFTMod can be found
17
+ * here (https://github.com/simonlindholm/fft-precision/blob/master/fft-precision.md)
16
18
*/
17
19
#pragma once
18
20
Original file line number Diff line number Diff line change 8
8
* Inputs must be in $[0, \text{mod})$.
9
9
* Time: O(N \log N), where $N = |A|+|B|$ (twice as slow as NTT or FFT)
10
10
* Status: stress-tested
11
+ * Details: An in-depth examination of precision for both FFT and FFTMod can be found
12
+ * here (https://github.com/simonlindholm/fft-precision/blob/master/fft-precision.md)
11
13
*/
12
14
#pragma once
13
15
You can’t perform that action at this time.
0 commit comments