| 23 | NURandConstant RandomGenerator::GetRandomConstant() const { return c_; } |
| 24 | |
| 25 | void RandomGenerator::SetRandomConstant() { |
| 26 | c_.c_last = GetRandom(0, 255); |
| 27 | c_.c_id = GetRandom(0, 1023); |
| 28 | c_.ol_i_id = GetRandom(0, 8191); |
| 29 | } |
| 30 | |
| 31 | inline bool VarfiyConstantAvailableForRun(int run_last, int load_last) { |
| 32 | int delta = run_last - load_last; |