Commented the right function
authorAleksandar Kostovic <alexandar.kostovic@gmail.com>
Sun, 28 Apr 2019 15:25:15 +0000 (17:25 +0200)
committerAleksandar Kostovic <alexandar.kostovic@gmail.com>
Sun, 28 Apr 2019 15:25:15 +0000 (17:25 +0200)
src/add/fsqrt.py

index f82e8dc6d98bae03d7d3a2fe65986a5426e2940f..edb7d4ba17ad916b5043cc60a986d6fcc421ec66 100644 (file)
@@ -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