From ea66df54fbf5a1987c1c76c8edbc7e5ab336e40d Mon Sep 17 00:00:00 2001 From: Tony-HYX <605698554@qq.com> Date: Fri, 3 Mar 2023 20:04:19 +0800 Subject: [PATCH] remove round in reg --- abl/abducer/kb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/abl/abducer/kb.py b/abl/abducer/kb.py index 4178c4e..0cff3fa 100644 --- a/abl/abducer/kb.py +++ b/abl/abducer/kb.py @@ -378,7 +378,7 @@ class HWF_KB(RegKB): 'div': '/', } formula = [mapping[f] for f in formula] - return round(eval(''.join(formula)), 2) + return eval(''.join(formula)) import time