diff --git a/MDAF/MDAF.py b/MDAF/MDAF.py index a348081..37843d4 100644 --- a/MDAF/MDAF.py +++ b/MDAF/MDAF.py @@ -95,11 +95,11 @@ def measure(heuristicpath, funcpath, args, connection): upper = funcChars['upper'] lower = funcChars['lower'] - if upper is not list: upper = [upper for i in range(n)] + if upper is not list: + print(type(upper) + upper = [upper for i in range(n)] if lower is not list: lower = [lower for i in range(n)] - print(upper) - print(lower) scale = list() for i in range(n): scale.append(upper[i] - lower[i]) diff --git a/MDAF/__pycache__/MDAF.cpython-39.pyc b/MDAF/__pycache__/MDAF.cpython-39.pyc index 3108f52..f27da99 100644 Binary files a/MDAF/__pycache__/MDAF.cpython-39.pyc and b/MDAF/__pycache__/MDAF.cpython-39.pyc differ