We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Currently, test_random uses the following code for generating the number of iterations:
test_random
const N_ITER: usize = 1 << 32;
This overflows if usize has 32-bits or less.
usize
A trivial fix is:
const N_ITER: u64 = 1 << 32;