(x, bits)
| 92 | |
| 93 | |
| 94 | def uniform_from_uint(x, bits): |
| 95 | if bits in (64, 63, 53): |
| 96 | return uniform_from_uint64(x) |
| 97 | elif bits == 32: |
| 98 | return uniform_from_uint32(x) |
| 99 | |
| 100 | |
| 101 | def uniform_from_uint64(x): |
no test coverage detected
searching dependent graphs…