diff options
Diffstat (limited to 'src/lib/math/numbertheory/ressol.cpp')
-rw-r--r-- | src/lib/math/numbertheory/ressol.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/math/numbertheory/ressol.cpp b/src/lib/math/numbertheory/ressol.cpp index 875d054c3..127dc899e 100644 --- a/src/lib/math/numbertheory/ressol.cpp +++ b/src/lib/math/numbertheory/ressol.cpp @@ -66,7 +66,7 @@ BigInt ressol(const BigInt& a, const BigInt& p) q = mod_p.square(q); ++i; - if(s >= i) + if(i > s) { return -BigInt(1); } |