AS
Results
2
comments of
AS
> Hi @Shay2Shay , this PR was initially made to the old 1.10 branch. I tried switching it to `main`, but that has brought many other commits with it. Would...
``` sage: b = Mod(2,37); a = b^20 sage: discrete_log(a, b) 20 sage: sage: discrete_log(a, b, bounds=(10, 100)) 20 sage: discrete_log(a, b, bounds=(10, 15)) 20 sage: discrete_log(a, b, bounds=(10, 12))...