Mercurial > dropbear
comparison libtommath/etc/mersenne.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 /* Finds Mersenne primes using the Lucas-Lehmer test | 1 /* Finds Mersenne primes using the Lucas-Lehmer test |
2 * | 2 * |
3 * Tom St Denis, [email protected] | 3 * Tom St Denis, [email protected] |
4 */ | 4 */ |
5 #include <time.h> | 5 #include <time.h> |
6 #include <tommath.h> | 6 #include <tommath.h> |
7 | 7 |
8 int | 8 int |
136 k += 2; | 136 k += 2; |
137 } | 137 } |
138 } | 138 } |
139 return 0; | 139 return 0; |
140 } | 140 } |
141 | |
142 /* $Source: /cvs/libtom/libtommath/etc/mersenne.c,v $ */ | |
143 /* $Revision: 1.3 $ */ | |
144 /* $Date: 2006/03/31 14:18:47 $ */ |