Mercurial > dropbear
comparison libtommath/etc/tune.c @ 398:59c7938af2bd
merge of '1250b8af44b62d8f4fe0f8d9fc7e7a1cc34e7e1c'
and '7f8670ac3bb975f40967f3979d09d2199b7e90c8'
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Sat, 03 Feb 2007 08:20:30 +0000 |
parents | 5ff8218bcee9 |
children | 60fc6476e044 |
comparison
equal
deleted
inserted
replaced
396:e7c1a77d2921 | 398:59c7938af2bd |
---|---|
1 /* Tune the Karatsuba parameters | 1 /* Tune the Karatsuba parameters |
2 * | 2 * |
3 * Tom St Denis, [email protected] | 3 * Tom St Denis, [email protected] |
4 */ | 4 */ |
5 #include <tommath.h> | 5 #include <tommath.h> |
6 #include <time.h> | 6 #include <time.h> |
7 | 7 |
8 /* how many times todo each size mult. Depends on your computer. For slow computers | 8 /* how many times todo each size mult. Depends on your computer. For slow computers |
134 printf("KARATSUBA_MUL_CUTOFF = %d\n", y); | 134 printf("KARATSUBA_MUL_CUTOFF = %d\n", y); |
135 printf("KARATSUBA_SQR_CUTOFF = %d\n", x); | 135 printf("KARATSUBA_SQR_CUTOFF = %d\n", x); |
136 | 136 |
137 return 0; | 137 return 0; |
138 } | 138 } |
139 | |
140 /* $Source: /cvs/libtom/libtommath/etc/tune.c,v $ */ | |
141 /* $Revision: 1.3 $ */ | |
142 /* $Date: 2006/03/31 14:18:47 $ */ |