/beegfs/hackathon/users/eoseret/qaas_runs_test/178-663-3083/intel/CoMD/build/CoMD/CoMD/src-openmp/random.c: 45 - 74
--------------------------------------------------------------------------------

45:    *seed *= UINT64_C(437799614237992725);
46:    *seed %= UINT64_C(2305843009213693951);
[...]
66: {
67:    uint32_t s1 = id * UINT32_C(2654435761);
68:    uint32_t s2 = (id+callSite) * UINT32_C(2654435761);
69: 
70:    uint64_t iSeed = (UINT64_C(0x100000000) * s1) + s2;
71:    for (unsigned jj=0; jj<10; ++jj)
72:       lcg61(&iSeed);
73:       
74:    return iSeed;
