We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62b638e commit e132adcCopy full SHA for e132adc
src/emcee.jl
@@ -90,7 +90,7 @@ function move(
90
alphamult = (n - 1) * log(z)
91
92
# Make new parameters
93
- y = @. walker.params + z * (other_walker.params - walker.params)
+ y = @. other_walker.params + z * (walker.params - other_walker.params)
94
95
# Construct a new walker
96
new_walker = Transition(model, y)
@@ -215,4 +215,4 @@ end
215
# theta = theta_min + (theta_max - theta_min) * rand()
216
# end
217
218
-# end
+# end
0 commit comments