Table the variables

This commit is contained in:
Dionysus 2024-11-26 00:42:09 -05:00
parent 53178a5731
commit 9b0a627b03
Signed by: acidvegas
GPG Key ID: EF4B922DB85DC9DE

View File

@ -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 ### Linear Congruential Generator
PyLCG uses an optimized LCG implementation with carefully chosen parameters: PyLCG uses an optimized LCG implementation with carefully chosen parameters:
- Multiplier (a): 1664525 | Name | Variable | Value |
- Increment (c): 1013904223 |------------|----------|--------------|
- Modulus (m): 2^32 | Multiplier | `a` | `1664525` |
| Increment | `c` | `1013904223` |
| Modulus | `m` | `2^32` |
This generates a deterministic sequence of pseudo-random numbers using the formula: This generates a deterministic sequence of pseudo-random numbers using the formula:
``` ```