Open Scottyang8math opened 2 years ago
Hi Scottyang8math,
did you publish your changed version somewhere on github? I'd love to use the corrected version of the tests in my projects.
I created a fork where I implemented @Scottyang8math suggestions https://github.com/zazuza7/NistRng
Recently, I have used this project in my research. There are two bugs I found. First: it seems to change the original sequences after running the "binary_matrix_rank" test. It should be fixed by replacing "self._matrix = block" with "self._matrix = block.copy()" on line 31 of file "test_binary_matrix_rank.py".
lastly: As @Programmer101N mentioned, it has the wrong output for the "Random Excursion Test". It should be fixed by the following change: line 64,65:
line 71:
line 86--98 replaced by (Important)
Thanks for this project!