mirror of
https://github.com/ejeanboris/MDAF.git
synced 2025-04-30 12:32:25 +00:00
10 lines
160 B
Python
10 lines
160 B
Python
from math import sqrt, fabs
|
|
|
|
|
|
def main(args):
|
|
'''
|
|
#_# dimmensions: 2
|
|
|
|
'''
|
|
return 100*sqrt(fabs(args[1]-0.01*args[0]**2))+0.01*fabs(args[0]+10)
|