saving sample_code

This commit is contained in:
Remi Ehounou
2021-05-24 01:40:47 -04:00
parent 6e528bf5b0
commit a6d862cd4e

View File

@ -10,4 +10,15 @@ if __name__ == '__main__':
#data = doe (heuristicpath, testfunctionpaths, args) #data = doe (heuristicpath, testfunctionpaths, args)
#print(data['Brown']) #print(data['Brown'])
representfunc("TestFunctions/Brown.py", forced = True) representfunc("TestFunctions/Brown.py", forced = True)
from MDAF import *
testfunctionpaths = ["@Bukin2.py","@Bukin4.py","@Brown.py"]
heuristicpath = "@SimmulatedAnnealing.py"
args = {"t": 1000, "p": 0.95, "objs": 0}
data = doe (heuristicpath, testfunctionpaths, args)
print(data)