From 9b0a627b03c51ef56fe18091d887f74faeec2d51 Mon Sep 17 00:00:00 2001 From: acidvegas Date: Tue, 26 Nov 2024 00:42:09 -0500 Subject: [PATCH] Table the variables --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) 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: ```