| 19 | } |
| 20 | |
| 21 | TFastRng64::TArgs::TArgs(ui64 seed) noexcept { |
| 22 | TReallyFastRng32 rng(seed); |
| 23 | |
| 24 | Seed1 = rng.GenRand64(); |
| 25 | Seq1 = rng.GenRand(); |
| 26 | Seed2 = rng.GenRand64(); |
| 27 | Seq2 = rng.GenRand(); |
| 28 | } |
| 29 | |
| 30 | TFastRng64::TArgs::TArgs(IInputStream& entropy) { |
| 31 | static_assert(sizeof(*this) == 3 * sizeof(ui64), "please, fix me"); |
nothing calls this directly
no test coverage detected