The unified diff between revisions [51f9ee51..] and [cbf9e103..] is displayed below. It can also be downloaded as a raw diff.

This diff has been restricted to the following files: 'src/numthry.cpp'

#
#
# patch "src/numthry.cpp"
#  from [5818781e08d5adb2212ff87aedd8514699835619]
#    to [ce29bfd5f77b486f69081a6884cf35374480821d]
#
============================================================
--- src/numthry.cpp	5818781e08d5adb2212ff87aedd8514699835619
+++ src/numthry.cpp	ce29bfd5f77b486f69081a6884cf35374480821d
@@ -284,15 +284,12 @@ bool MillerRabin_Test::passes_test(const
    if(a < 2 || a >= n_minus_1)
       throw Invalid_Argument("Bad size for nonce in Miller-Rabin test");

-   global_state().pulse(PRIME_TESTING);
-
    BigInt y = pow_mod(a);
    if(y == 1 || y == n_minus_1)
       return true;

    for(u32bit j = 1; j != s; ++j)
       {
-      global_state().pulse(PRIME_TESTING);
       y = reducer.square(y);

       if(y == 1)