From affde4a327da5396a7a95e3b3a67dc24f07b5895 Mon Sep 17 00:00:00 2001 From: Ben Date: Fri, 24 Jun 2022 15:46:00 +0100 Subject: [PATCH] ceil -> floor (-ve logs) --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 4f94197b2..0c8372d1c 100644 --- a/README.rst +++ b/README.rst @@ -53,7 +53,7 @@ Each model outputs a value of sigma, and is of the form: :: - f(a, b, n) = max(ceil(a * n + b), -log2(q) + 2) + f(a, b, n) = max(floor(a * n + b), -log2(q) + 2) :: where the -log2(q) + 2 term ensures that we are always using at least two bits of noise.