File tree 3 files changed +6
-2
lines changed
3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 1
1
# DynamicPPL Changelog
2
2
3
+ ## 0.35.6
4
+
5
+ Fixed the implementation of ` .~ ` , such that running a model with it no longer requires DynamicPPL itself to be loaded.
6
+
3
7
## 0.35.5
4
8
5
9
Several internal methods have been removed:
Original file line number Diff line number Diff line change 1
1
name = " DynamicPPL"
2
2
uuid = " 366bfd00-2699-11ea-058f-f148b4cae6d8"
3
- version = " 0.35.5 "
3
+ version = " 0.35.6 "
4
4
5
5
[deps ]
6
6
ADTypes = " 47edcb42-4c32-4615-8424-f2b9edc5f35b"
Original file line number Diff line number Diff line change @@ -519,7 +519,7 @@ Generate the expression that replaces `left .~ right` in the model body.
519
519
function generate_dot_tilde (left, right)
520
520
@gensym dist left_axes idx
521
521
return quote
522
- $ dist = DynamicPPL. check_dot_tilde_rhs ($ right)
522
+ $ dist = $ ( DynamicPPL. check_dot_tilde_rhs) ($ right)
523
523
$ left_axes = axes ($ left)
524
524
for $ idx in Iterators. product ($ left_axes... )
525
525
$ left[$ idx... ] ~ $ dist
You can’t perform that action at this time.
0 commit comments