Mercurial > dropbear
comparison libtommath/etc/tune.c @ 435:337c45621e81
merge of 'a9b0496634cdd25647b65e585cc3240f3fa699ee'
and 'c22be8b8f570b48e9662dac32c7b3e7148a42206'
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Thu, 22 Feb 2007 14:53:49 +0000 |
parents | 5ff8218bcee9 |
children | 60fc6476e044 |
comparison
equal
deleted
inserted
replaced
434:0aaaf68e97dc | 435:337c45621e81 |
---|---|
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 $ */ |