diff options
author | tomsmeding <tom.smeding@gmail.com> | 2016-10-12 20:40:12 +0200 |
---|---|---|
committer | tomsmeding <tom.smeding@gmail.com> | 2016-10-12 20:40:41 +0200 |
commit | 2b7538c114e982f0d0af545e0f9796d2cfec33fc (patch) | |
tree | 3fe4d8165953e9b0d5df1b300cb3bfde48393567 | |
parent | d261323f69f650fc50516fe2e36991d902b9d2e1 (diff) |
Removed superfluous TODO comment
-rw-r--r-- | primes.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -118,7 +118,6 @@ bool strongPseudoPrime2(const Bigint &n){ bool strongLucasPrime(const Bigint &n){ //https://en.wikipedia.org/wiki/Lucas_pseudoprime#Implementing_a_Lucas_probable_prime_test - //TODO: use d and s already calculated in strongPseudoPrime2 if(n<2)return false; if(n==2)return true; if(n.even())return false; |