From a320f242477e10dc1df4fe4073c8550898d9591a Mon Sep 17 00:00:00 2001 From: agiliopadua Date: Mon, 20 Mar 2023 14:46:01 +0100 Subject: [PATCH 1/2] Fixed bug in fep tools --- tools/fep/fdti.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/fep/fdti.py b/tools/fep/fdti.py index 1f3f86f001..c439f72eb0 100755 --- a/tools/fep/fdti.py +++ b/tools/fep/fdti.py @@ -23,7 +23,7 @@ if len(tok) == 4: v = float(tok[3]) lo = -rt * math.log(float(tok[2]) / v) -i = 0 +i = 1 sum = 0.0 for line in sys.stdin: tok = line.split() From 3280d6b7864a5c15e65e66e268f4e00bf08e0fa5 Mon Sep 17 00:00:00 2001 From: agiliopadua Date: Mon, 20 Mar 2023 14:47:40 +0100 Subject: [PATCH 2/2] Fixed bug in fep tools --- tools/fep/nti.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/fep/nti.py b/tools/fep/nti.py index ffe47fb908..cd426163bc 100755 --- a/tools/fep/nti.py +++ b/tools/fep/nti.py @@ -19,7 +19,7 @@ while line.startswith("#"): tok = line.split() lo = float(tok[1]) -i = 0 +i = 1 sum = 0.0 for line in sys.stdin: tok = line.split()