Skip to content

Commit

Permalink
flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
bencrts committed Nov 19, 2024
1 parent 78669e9 commit 23996d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion estimator/nd.py
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ def __init__(self, b, n=None):
super().__init__(
n=n,
mean=RR(0),
stddev=RR(sqrt(((2**(b+1) + 1)**2 - 1)/12)),
stddev=RR(sqrt((2**(2*b+1) + 1)/6)),
bounds=(-2**b, 2**b),
_density=(1 - 1 / 2**(b+1)),
)
Expand Down

0 comments on commit 23996d1

Please sign in to comment.