We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The last mixing steps in the loops of murmur2 and murmur2A do:
h *= m; h ^= k;
And similar in murmur64B:
h1 *= m; h1 ^= k1; ..... h2 *= m; h2 ^= k2;
But in murmur64A, they are reversed:
h ^= k; h *= m;
Is that intentional? If so, curious as to why. Thanks!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The last mixing steps in the loops of murmur2 and murmur2A do:
And similar in murmur64B:
But in murmur64A, they are reversed:
Is that intentional? If so, curious as to why.
Thanks!
The text was updated successfully, but these errors were encountered: