Skip to content

Commit 8f49604

Browse files
committed
rename parameter
1 parent 19ef1ff commit 8f49604

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dime_sampler/moves.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,12 @@ class DIMEMove(RedBlueMove):
4444
"""
4545

4646
def __init__(
47-
self, sigma=1.0e-5, gamma=None, aimh_prob=0.1, df_proposal_dist=10, delta=.999, **kwargs
47+
self, sigma=1.0e-5, gamma=None, aimh_prob=0.1, df_proposal_dist=10, rho=.999, **kwargs
4848
):
4949

5050
self.sigma = sigma
5151
self.g0 = gamma
52-
self.decay = delta
52+
self.decay = rho
5353
self.aimh_prob = aimh_prob
5454
self.dft = df_proposal_dist
5555

0 commit comments

Comments
 (0)