BigInteger: adjustment to isPrime

This commit is contained in:
terrafrost 2017-11-22 19:49:55 -06:00
parent b50dde76f5
commit 5ba61146e6

View File

@ -3492,7 +3492,7 @@ class Math_BigInteger
break; break;
} }
} }
$s = 26 * $i + $j - 1; $s = 26 * $i + $j;
$r->_rshift($s); $r->_rshift($s);
} }