1#define mpn_toomMN_mul mpn_toom53_mul
2#define mpn_toomMN_mul_itch mpn_toom53_mul_itch
3
4#define MIN_AN 17
5#define MIN_BN(an) (1 + 2*(((an) + 4) / (size_t) 5))
6#define MAX_BN(an) ((3*(an) - 11) >> 2)
7
8#include "toom-shared.h"
9