fix wrong computation of t1

This commit is contained in:
thomaslavaur 2025-05-30 08:24:45 +02:00
parent 8ca15737d3
commit 5070dbf597

View File

@ -220,7 +220,7 @@ if total_stake >= p:
exit()
t0 = F(int((((- ln(R(0.95))) * R(p))) / R(total_stake) ))
t1 = F(int((((- ln(R(0.95))**2) * R(p))) / R(total_stake)**2 ))
t1 = F(int((((- ln(R(0.95))**2) * R(p))) / R(1/2) * R(total_stake)**2 ))
value = F(50)