keep package at top level

This commit is contained in:
Remi Ehounou
2021-05-23 17:07:57 -04:00
parent 44950b69fe
commit f9c45d927b
27 changed files with 2 additions and 3 deletions

13
Sample codes/work.py Normal file
View File

@ -0,0 +1,13 @@
if __name__ == '__main__':
heuristicpath = "SampleAlgorithms/SimmulatedAnnealing.py"
heuristic_name = "SimmulatedAnnealing"
#testfunctionpaths = ["TestFunctions/Bukin2.py", "TestFunctions/Bukin4.py", "TestFunctions/Brown.py"]
funcnames = ["Bukin2", "Bukin4", "Brown"]
testfunctionpaths = ["/home/remi/Documents/MDAF-GitLAB/SourceCode/TestFunctions/Brown.py"]
# funcnames = ["Bukin4"]
args = {"t": 1000, "p": 0.95, "objs": 0}
#data = doe (heuristicpath, testfunctionpaths, args)
#print(data['Brown'])
representfunc("TestFunctions/Brown.py", forced = True)