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 fb5413f commit 29b4631Copy full SHA for 29b4631
src/compiler.jl
@@ -519,7 +519,7 @@ Generate the expression that replaces `left .~ right` in the model body.
519
function generate_dot_tilde(left, right)
520
@gensym dist left_axes idx
521
return quote
522
- $dist = DynamicPPL.check_dot_tilde_rhs($right)
+ $dist = $(DynamicPPL.check_dot_tilde_rhs)($right)
523
$left_axes = axes($left)
524
for $idx in Iterators.product($left_axes...)
525
$left[$idx...] ~ $dist
0 commit comments