blob: 2f35cac5281c6b95a8ce959fd1e6048a37738986 [file] [log] [blame] [edit]
#define mpn_toomMN_mul mpn_toom22_mul
#define mpn_toomMN_mul_itch mpn_toom22_mul_itch
#define MIN_AN MPN_TOOM22_MUL_MINSIZE
#define MIN_BN(an) \
((an) >= 2*MUL_TOOM22_THRESHOLD \
? (an) + 2 - MUL_TOOM22_THRESHOLD \
: ((an)+1)/2 + 1 + (an & 1))
#include "toom-shared.h"