Code work for completion of MSc ICT. The original version of this project was submitted alongside a 15,000 word thesis paper and put into practice the theoretical CPU and GPGPU/GPU elements explored in the write-up. I continued to develop this project post-graduation.
0
stars
1
forks
source link
Implement true random number generation using std::mt19937 #10
numGen files currently use rand(), well known for not being effective in "genuine" randomness: See here (refer to notes section)).
With this, I want to implement true randomness (or as close as possible) using std::random_device: See here.