blob: e42745da96b3503b07bdcbe2fed0863c0caeedc2 [file] [log] [blame]
Austin Schuhdace2a62020-08-18 10:56:48 -07001#define mpn_toomMN_mul mpn_toom32_mul
2#define mpn_toomMN_mul_itch mpn_toom32_mul_itch
3
4#define MIN_AN 6
5#define MIN_BN(an) (((an) + 8) / (size_t) 3)
6#define MAX_BN(an) ((an) - 2)
7
8#include "toom-shared.h"