Data update
This commit is contained in:
parent
35bcdeebf8
commit
74c69a0df6
2427 changed files with 31826 additions and 3468 deletions
|
|
@ -24,7 +24,7 @@ uint64_t multiply_modulus(uint64_t a, uint64_t b, const uint64_t& modulus) {
|
|||
if ( a % 2 == 1 ) {
|
||||
result = ( result + b ) % modulus;
|
||||
};
|
||||
b = ( b * 2 ) % modulus;
|
||||
b = ( b << 1 ) % modulus;
|
||||
a >>= 1;
|
||||
}
|
||||
return result;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue