Table the variables
This commit is contained in:
parent
53178a5731
commit
9b0a627b03
@ -43,9 +43,11 @@ for ip in ip_stream('192.168.0.0/16', shard_num=1, total_shards=4, seed=12345):
|
||||
### Linear Congruential Generator
|
||||
|
||||
PyLCG uses an optimized LCG implementation with carefully chosen parameters:
|
||||
- Multiplier (a): 1664525
|
||||
- Increment (c): 1013904223
|
||||
- Modulus (m): 2^32
|
||||
| Name | Variable | Value |
|
||||
|------------|----------|--------------|
|
||||
| Multiplier | `a` | `1664525` |
|
||||
| Increment | `c` | `1013904223` |
|
||||
| Modulus | `m` | `2^32` |
|
||||
|
||||
This generates a deterministic sequence of pseudo-random numbers using the formula:
|
||||
```
|
||||
|
Loading…
Reference in New Issue
Block a user