Skip to content

Commit 6f3dbd3

Browse files
committed
feat(): support for new functional dependencies pipeline from reactivemp
1 parent e3afab0 commit 6f3dbd3

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "GraphPPL"
22
uuid = "b3f8163a-e979-4e85-b43e-1f63d8c8b42c"
33
authors = ["Dmitry Bagaev <[email protected]>"]
4-
version = "1.0.1"
4+
version = "1.0.2"
55

66
[deps]
77
MacroTools = "1914dd2f-81c6-5fcd-8719-6d5c9610ff09"

src/backends/reactivemp.jl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,8 @@ end
6767
function write_pipeline_stage(fform, stage)
6868
if @capture(stage, Default())
6969
return :(ReactiveMP.DefaultFunctionalDependencies())
70+
elseif @capture(stage, RequireEverything())
71+
return :(ReactiveMP.RequireEverythingFunctionalDependencies())
7072
elseif @capture(stage, RequireInbound(args__))
7173

7274
specs = map(args) do arg

0 commit comments

Comments
 (0)