From 19fdaa150749a27d4a88d0e9ca3a36ae90c64291 Mon Sep 17 00:00:00 2001 From: Aleksandar Kostovic Date: Sun, 28 Apr 2019 17:25:15 +0200 Subject: [PATCH] Commented the right function --- src/add/fsqrt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/add/fsqrt.py b/src/add/fsqrt.py index f82e8dc6..edb7d4ba 100644 --- a/src/add/fsqrt.py +++ b/src/add/fsqrt.py @@ -1,3 +1,4 @@ +# XXX DO NOT USE, fails on num=65536. wark-wark... def sqrtsimple(num): res = 0 bit = 1 << 14 @@ -16,7 +17,6 @@ def sqrtsimple(num): return res -# XXX DO NOT USE, fails on num=65536. wark-wark... def sqrt(num): D = num # D is input (from num) Q = 0 -- 2.30.2