Skip to content
New issue

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

question on mixing #69

Open
drodden opened this issue Mar 8, 2019 · 0 comments
Open

question on mixing #69

drodden opened this issue Mar 8, 2019 · 0 comments

Comments

@drodden
Copy link

drodden commented Mar 8, 2019

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!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant