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

transitiveclosure! silently unimplemented #89

Closed
drbergman opened this issue Mar 27, 2025 · 2 comments
Closed

transitiveclosure! silently unimplemented #89

drbergman opened this issue Mar 27, 2025 · 2 comments

Comments

@drbergman
Copy link
Contributor

drbergman commented Mar 27, 2025

transitiveclosure!(::MetaGraph) will return without error (at least when the underlying graph is a SimpleDiGraph{Int64}) but the transitive closure is not actually computed.

MWE

using Graphs, MetaGraphsNext, GraphPlot
G = MetaGraph(SimpleDiGraph();
    label_type=Symbol,
    vertex_data_type=Nothing,
    edge_data_type=Nothing)

G[:a] = nothing
G[:b] = nothing
G[:c] = nothing

G[:a, :b] = nothing
G[:b, :c] = nothing

transitiveclosure!(G)
gplot(G) # shows original graph of G, i.e. `a -> b -> c`

# can get expected behavior this way:
transitiveclosure!(G.graph)
gplot(G) # shows transitive closure graph, i.e. `a -> b -> c <- a`

# however, the edge_data is not updated this way!
@assert !in((:a, :c), keys(G.edge_data))

Possible solutions

I think the simplest thing for the short term would be to not dispatch on MetaGraph types. Obviously, would be great to have this functionality for MetaGraphs, too

@gdalle
Copy link
Member

gdalle commented Mar 27, 2025

Sounds good, want to open a PR with an explicit dispatch throwing an informative error?
The general issue is that the AbstractGraph interface doesn't care about metadata, so every single generic algorithm in Graphs.jl just disregards it. That means the problem is much broader than transitive closure

@drbergman
Copy link
Contributor Author

bandaid PR opened

@gdalle gdalle closed this as completed Mar 31, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants