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 0527a84 commit 9aa0a9aCopy full SHA for 9aa0a9a
src/context_implementations.jl
@@ -44,7 +44,7 @@ This method is applied in the generated code for assumed variables, e.g., `x ~ N
44
Falls back to `tilde(ctx, sampler, right, vn, inds, vi)`.
45
"""
46
function tilde_assume(ctx, sampler, right, vn, inds, vi)
47
- (value, logp) = tilde(ctx, sampler, right, vn, inds, vi)
+ value, logp = tilde(ctx, sampler, right, vn, inds, vi)
48
acclogp!(vi, logp)
49
return value
50
end
@@ -203,7 +203,7 @@ MvNormal()` where `x` does not occur in the model inputs.
203
Falls back to `dot_tilde(ctx, sampler, right, left, vn, inds, vi)`.
204
205
function dot_tilde_assume(ctx, sampler, right, left, vn, inds, vi)
206
- (value, logp) = dot_tilde(ctx, sampler, right, left, vn, inds, vi)
+ value, logp = dot_tilde(ctx, sampler, right, left, vn, inds, vi)
207
208
209
0 commit comments