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
See if one can improve on an existing hash function.
Hash function structure from: https://nullprogram.com/blog/2018/07/31/
uint32_tprospector32(uint32_t x){ x ^= x >> 15; x *= 0x2c1b3c6dU; x ^= x >> 12; x *= 0x297a2d39U; x ^= x >> 15; return x; }
Existing results: skeeto/hash-prospector#19 (comment)
Best so far: [16 21f0aaad 15 735a2d97 15], with x² = 0.10704308166917044
[16 21f0aaad 15 735a2d97 15]
Studies:
The text was updated successfully, but these errors were encountered:
jdreo
No branches or pull requests
See if one can improve on an existing hash function.
Hash function structure from: https://nullprogram.com/blog/2018/07/31/
Existing results: skeeto/hash-prospector#19 (comment)
Best so far:
[16 21f0aaad 15 735a2d97 15]
, with x² = 0.10704308166917044Studies:
The text was updated successfully, but these errors were encountered: