| 342 | static ReservoirStateData oldrs; |
| 343 | |
| 344 | double |
| 345 | anl_random_fract(void) |
| 346 | { |
| 347 | /* initialize if first time through */ |
| 348 | if (oldrs.randstate[0] == 0) |
| 349 | sampler_random_init_state(random(), oldrs.randstate); |
| 350 | |
| 351 | /* and compute a random fraction */ |
| 352 | return sampler_random_fract(oldrs.randstate); |
| 353 | } |
| 354 | |
| 355 | double |
| 356 | anl_init_selection_state(int n) |
nothing calls this directly
no test coverage detected