Austin Schuh | bb1338c | 2024-06-15 19:31:16 -0700 | [diff] [blame] | 1 | #define mpn_toomMN_mul mpn_toom43_mul |
2 | #define mpn_toomMN_mul_itch mpn_toom43_mul_itch | ||||
3 | |||||
4 | #define MIN_AN 25 | ||||
5 | #define MIN_BN(an) (1 + 2*(((an)+3) >> 2)) | ||||
6 | #define MAX_BN(an) ((an)-3) | ||||
7 | |||||
8 | #include "toom-shared.h" |