From: Aleksandar Kostovic Date: Sun, 28 Apr 2019 15:25:15 +0000 (+0200) Subject: Commented the right function X-Git-Tag: ls180-24jan2020~1155 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=19fdaa150749a27d4a88d0e9ca3a36ae90c64291;p=ieee754fpu.git Commented the right function --- 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