Godtone (talk | contribs)
My Python 3 code: misunderstood behaviour when center = '' (empty string)
Godtone (talk | contribs)
m My Python 3 code: really dumb error in the code that was causing make_val() to misbehave when using wart_tendency = 0
Line 611: Line 611:
return step_err(x,m)
return step_err(x,m)
def sgn(x):
def sgn(x):
if x!=0:
if x > 0:
return 1
return 1
elif x < 0:
elif x < 0: