mirror of
https://github.com/ejeanboris/MDAF.git
synced 2025-12-14 20:48:14 +00:00
13 lines
167 B
Python
13 lines
167 B
Python
def main(args):
|
|
'''
|
|
|
|
:param args: list of floats
|
|
:return: float
|
|
|
|
|
|
|
|
'''
|
|
return 100*(args[1]-0.01*args[0]**2+1)+0.01*(args[0]+10)**2
|
|
|
|
return 0
|