Right before pooling the randomized inner-sampling

This commit is contained in:
2021-05-15 17:36:11 -04:00
parent bb60d49e33
commit d0451b3f36
7 changed files with 64 additions and 15 deletions

View File

@ -23,7 +23,7 @@ def tweak(St,p,sigma,high,low):
return St
def Quality(Sc,objective,func):
func_output = func.main(Sc)
func_output = func(Sc)
if type(func_output) == list:
error = [func_output[i]-objective[i] for i in range(len(func_output))]
else: