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
Replace rand() in n2e_GenerateRandom(), srand() and rand() in EditSortLines() and srand() in n2e_Init(). There are better yet small quality generators: https://github.com/bryc/code/blob/master/jshash. There is also the well known MT generator: http://www.math.sci.hiroshima-u.ac.jp/m-mat/MT/emt.html. Pick any that you like.
rand()
n2e_GenerateRandom()
srand()
EditSortLines()
n2e_Init()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Replace
rand()
inn2e_GenerateRandom()
,srand()
andrand()
inEditSortLines()
andsrand()
inn2e_Init()
. There are better yet small quality generators: https://github.com/bryc/code/blob/master/jshash. There is also the well known MT generator: http://www.math.sci.hiroshima-u.ac.jp/m-mat/MT/emt.html. Pick any that you like.The text was updated successfully, but these errors were encountered: