If I'm not mistaken, running proquint with the default argument n_words=2L should be able to generate 2^32 (4,294,967,296) unique identifiers.
When I run proquint with just n=121969, I consistently get duplicates. You can test this with the below:
proquint(121969) |> unique() |> length() which in my case is always 2 to 3 less than 121,969. Am I missing something with how this should work?
If I'm not mistaken, running
proquintwith the default argumentn_words=2Lshould be able to generate 2^32 (4,294,967,296) unique identifiers.When I run
proquintwith justn=121969, I consistently get duplicates. You can test this with the below:proquint(121969) |> unique() |> length()which in my case is always 2 to 3 less than 121,969. Am I missing something with how this should work?