Quale problema migliore per PCG.SE che implementare PCG, un migliore generatore di numeri casuali ? Questo nuovo documento afferma di presentare un generatore di numeri casuali veloce, difficile da prevedere, piccolo e statisticamente ottimale.
La sua implementazione C minima è di circa nove righe:
// *Really* minimal PCG32 code / (c) 2014 M.E. O'Neill / pcg-random.org
// Licensed under Apache License 2.0 (NO WARRANTY, etc. see website)
typedef struct { uint64_t state; uint64_t inc; } pcg32_random_t;
uint32_t pcg32_random_r(pcg32_random_t* rng)
{
uint64_t oldstate = rng->state;
// Advance internal state
rng->state = oldstate * 6364136223846793005ULL + (rng->inc|1);
// Calculate output function (XSH RR), uses old state for max ILP
uint32_t xorshifted = ((oldstate >> 18u) ^ oldstate) >> 27u;
uint32_t rot = oldstate >> 59u;
return (xorshifted >> rot) | (xorshifted << ((-rot) & 31));
}
(da: http://www.pcg-random.org/download.html )
La domanda è: puoi fare di meglio?
Regole
Scrivi un programma o definisci una funzione che implementa PCG su numeri interi senza segno a 32 bit. Questo è abbastanza ampio: potresti stampare una sequenza infinita, definire una pcg32_random_r
funzione e una struttura corrispondente, ecc.
Devi essere in grado di eseguire il seeding del generatore di numeri casuali in modo equivalente alla seguente funzione C:
// pcg32_srandom(initstate, initseq)
// pcg32_srandom_r(rng, initstate, initseq):
// Seed the rng. Specified in two parts, state initializer and a
// sequence selection constant (a.k.a. stream id)
void pcg32_srandom_r(pcg32_random_t* rng, uint64_t initstate, uint64_t initseq)
{
rng->state = 0U;
rng->inc = (initseq << 1u) | 1u;
pcg32_random_r(rng);
rng->state += initstate;
pcg32_random_r(rng);
}
(da pcg_basic.c:37
:)
Chiamare il generatore di numeri casuali senza prima eseguirne il seeding è un comportamento indefinito.
Per controllare facilmente l'invio, verificare che, quando viene eseguito il seeding con initstate = 42
e initseq = 52
, l'output è 2380307335
:
$ tail -n 8 pcg.c
int main()
{
pcg32_random_t pcg;
pcg32_srandom_r(&pcg, 42u, 52u);
printf("%u\n", pcg32_random_r(&pcg));
return 0;
}
$ gcc pcg.c
$ ./a.out
2380307335
punteggio
Punteggio standard. Misurato in byte. Il più basso è il migliore. In caso di pareggio, vince l'invio precedente. Si applicano scappatoie standard .
Soluzione di esempio
Compilare in gcc -W -Wall
modo pulito (versione 4.8.2).
Confronta il tuo invio con questo per assicurarti di ottenere la stessa sequenza.
#include <stdlib.h>
#include <stdint.h>
#include <stdio.h>
typedef struct { uint64_t state; uint64_t inc; } pcg32_random_t;
uint32_t pcg32_random_r(pcg32_random_t* rng)
{
uint64_t oldstate = rng->state;
// Advance internal state
rng->state = oldstate * 6364136223846793005ULL + (rng->inc|1);
// Calculate output function (XSH RR), uses old state for max ILP
uint32_t xorshifted = ((oldstate >> 18u) ^ oldstate) >> 27u;
uint32_t rot = oldstate >> 59u;
return (xorshifted >> rot) | (xorshifted << ((-rot) & 31));
}
void pcg32_srandom_r(pcg32_random_t* rng, uint64_t initstate, uint64_t initseq)
{
rng->state = 0U;
rng->inc = (initseq << 1u) | 1u;
pcg32_random_r(rng);
rng->state += initstate;
pcg32_random_r(rng);
}
int main()
{
size_t i;
pcg32_random_t pcg;
pcg32_srandom_r(&pcg, 42u, 52u);
for (i = 0; i < 16; i++)
{
printf("%u\n", pcg32_random_r(&pcg));
}
return 0;
}
Sequenza:
2380307335
948027835
187788573
3952545547
2315139320
3279422313
2401519167
2248674523
3148099331
3383824018
2720691756
2668542805
2457340157
3945009091
1614694131
4292140870