PCG32Fast

+ Pre-defined PCG generators, matching the original source code's definitions. + + PCG32 support multiple streams, PCG32OneSeq and PCG32Fast do not. PCG32Fast is slightly faster, but has a shorter period.

  1. alias PCG32 = PCGEngine!(uint, ulong, xsh_rr, true, SetSeq)
  2. alias PCG32OneSeq = PCGEngine!(uint, ulong, xsh_rr, true, OneSeq)
  3. alias PCG32Fast = PCGEngine!(uint, ulong, xsh_rs, true, MCG)
    alias PCG32Fast = PCGEngine!(uint, ulong, xsh_rs, true, MCG)

Meta