| 66 | // clang-format on |
| 67 | |
| 68 | RandomEngine() |
| 69 | : seed(new uintl()) |
| 70 | , counter(new uintl()) |
| 71 | , pos(emptyArray()) |
| 72 | , sh1(emptyArray()) |
| 73 | , sh2(emptyArray()) |
| 74 | , recursion_table(emptyArray()) |
| 75 | , temper_table(emptyArray()) |
| 76 | , state(emptyArray()) {} |
| 77 | }; |
| 78 | |
| 79 | af_random_engine getRandomEngineHandle(const RandomEngine &engine) { |
nothing calls this directly
no test coverage detected