blob: c9beed9fc17ee9a8d7c65ee02b2031c4fdac3eb5 [file] [log] [blame]
Austin Schuhdace2a62020-08-18 10:56:48 -07001#define mpn_toomMN_mul mpn_toom22_mul
2#define mpn_toomMN_mul_itch mpn_toom22_mul_itch
3#define MIN_AN MIN(MPN_TOOM22_MUL_MINSIZE,4)
4
5#define MIN_BN(an) \
6 ((an) >= 2*MUL_TOOM22_THRESHOLD \
7 ? (an) + 2 - MUL_TOOM22_THRESHOLD \
8 : ((an)+1)/2 + 1 + (an & 1))
9
10#include "toom-shared.h"