Removes alpha/beta from weighted formula

This commit is contained in:
LSaldyt
2017-12-08 10:49:58 -07:00
parent 08f332b936
commit 7eb7378ed3

View File

@ -1,4 +1,4 @@
def _weighted(temp, prob, s, u, alpha=1, beta=1):
def _weighted(temp, prob, s, u):
weighted = (temp / 100) * s + ((100 - temp) / 100) * u
return weighted