diff --git a/README.md b/README.md index cb37d4b..7a53c95 100644 --- a/README.md +++ b/README.md @@ -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: ```