/home/eoseret/qaas_runs_CPU_9468/171-148-3214/intel/CoMD/build/CoMD/CoMD/src-openmp/random.c: 46 - 74
--------------------------------------------------------------------------------

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;
