X-Git-Url: https://ginac.de/CLN/cln.git//cln.git?a=blobdiff_plain;f=examples%2Fperfnum.cc;h=df5af06c5c8577fe7cb69d5bf16845004ab5e147;hb=f6d5c2083b97d865f0dc9c4e7b98c667f940dc37;hp=a5612a54e18a8653d75ff70fc6a7af274b30d198;hpb=a6bcc824d607f0e8df592c04ccb9ac4a968449a1;p=cln.git diff --git a/examples/perfnum.cc b/examples/perfnum.cc index a5612a5..df5af06 100644 --- a/examples/perfnum.cc +++ b/examples/perfnum.cc @@ -8,8 +8,10 @@ using namespace cln; int main () { - // previous ones were 1257787, 1398269, 2976221, 3021377, 6972593, 13466917 - int p = 20996011; + // previous ones were 1257787, 1398269, 2976221, 3021377, 6972593, + // 13466917, 20996011, 24036583, 25964951, 30402457, 32582657, 37156667, + // 42643801, 43112609, 57885161, 74207281, 77232917, 82589933 + int p = 82589933; cl_I x = (((cl_I)1 << p) - 1) << (p-1); cout << x << endl; }