From 65cda553bbd8c4f955e5c50327a06aa8bc377ff6 Mon Sep 17 00:00:00 2001 From: Remi Ehounou Date: Mon, 24 May 2021 01:07:08 -0400 Subject: [PATCH] algorithm foldername corrected --- MDAF/MDAF.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MDAF/MDAF.py b/MDAF/MDAF.py index fccbe77..adcb6de 100644 --- a/MDAF/MDAF.py +++ b/MDAF/MDAF.py @@ -222,7 +222,7 @@ def doe(heuristicpath, testfunctionpaths, args): if funpath.find('@') == 0: testfunctionpaths[i] = path.dirname(__file__) + '/TestFunctions/' + funpath[1:] - if (heuristicpath.find('@') == 0): heuristicpath = path.dirname(__file__) + '/TestFunctions/' + heuristicpath[1:] + if (heuristicpath.find('@') == 0): heuristicpath = path.dirname(__file__) + '/SampleAlgorithms/' + heuristicpath[1:] #defining the function's name funcnames = [path.splitext(path.basename(funcpath))[0] for funcpath in testfunctionpaths]