Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Graphviz issue 233 #251

Merged
merged 29 commits into from
Dec 11, 2024
Merged
Show file tree
Hide file tree
Changes from 9 commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
ef3aa40
Consolidated code for review
Aug 20, 2024
e80f959
added proper docstrings to the core functions and encapsulated these …
Aug 26, 2024
82d6dde
added first tests for generate_dot and show_gv
Sep 2, 2024
da0fdfd
Move GraphViz to ext
Sep 5, 2024
896bee5
Merge branch 'main' into graphviz_issue_233
Sep 5, 2024
d590fbf
added minimal tests for most functions.
Sep 5, 2024
f6a192c
Update Project.toml file
Sep 6, 2024
540fa75
Merged updated code from Frasier
Sep 6, 2024
7671c6e
Remove `MetaGraphsNext` from extension dependencies
wouterwln Sep 9, 2024
36c125b
Changed Name of module to GraphPPLGraphVizExt
Sep 10, 2024
c156cbf
Merge branch 'graphviz_issue_233' of github.com:ReactiveBayes/GraphPP…
Sep 10, 2024
37e42e1
Change name of extension in Project.toml
wouterwln Sep 27, 2024
71aa028
wrapped abstract types arround symbolic expressions to keep the types…
Sep 30, 2024
106135e
Merge branch 'main' into graphviz_issue_233
Oct 16, 2024
e49dcb5
Merge remote-tracking branch 'graphppl_fraser/graphviz_issue_233_symb…
Oct 16, 2024
42c7d12
make labels nicer
bvdmitri Nov 12, 2024
26e6781
add save to option
bvdmitri Nov 12, 2024
85553b8
add support for external pretty names
bvdmitri Nov 12, 2024
14eb077
fix save_to type
bvdmitri Nov 14, 2024
6518a5c
Merge pull request #257 from ReactiveBayes/graphviz-suggestions
bvdmitri Nov 22, 2024
7d748c1
Cleaned up loose ends and now compliant with ReTestItems.jl
Dec 8, 2024
84a509a
cleanup pkg deps
bvdmitri Dec 9, 2024
e8f40fb
2prev
bvdmitri Dec 9, 2024
ddae014
add RxInfer to test dependencies
bvdmitri Dec 9, 2024
daf0ea2
use model zoo
bvdmitri Dec 9, 2024
6eb6790
formatting
bvdmitri Dec 9, 2024
a70e799
make documentation clear and concise
bvdmitri Dec 9, 2024
8e8ca9e
remove RxInfer from test dependencies
bvdmitri Dec 9, 2024
e35e5d4
Merge branch 'main' into graphviz_issue_233
bvdmitri Dec 11, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,12 @@ Unrolled = "9602ed7d-8fef-5bc8-8597-8f21381861e8"
Cairo = "159f3aea-2a34-519c-b102-8c37f9878175"
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
GraphPlot = "a2cc645c-3eea-5389-862e-a155d0052231"
GraphViz = "f526b714-d49f-11e8-06ff-31ed36ee7ee0"

[extensions]
GraphPPLDistributionsExt = "Distributions"
GraphPPLPlottingExt = ["Cairo", "GraphPlot"]
GraphvizVisualization = "GraphViz"

[compat]
BitSetTuples = "1.1"
Expand All @@ -40,6 +42,7 @@ StaticArrays = "1.6"
TupleTools = "1.4"
Unrolled = "0.1"
julia = "1.10"
GraphViz = "0.2"

[extras]
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
Expand Down
Loading
Loading