Skip to content

Commit 99107a4

Browse files
committed
Extension namespace bug
1 parent ed46a04 commit 99107a4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "NestedGraphs"
22
uuid = "03c36417-ddab-428a-818d-5359aee292ef"
33
authors = ["fchrstou <[email protected]> and contributors"]
4-
version = "0.2.1"
4+
version = "0.2.2"
55

66
[deps]
77
AbstractTrees = "1520ce14-60c1-5f80-bbc7-55ef81b5835c"

ext/NestedGraphsAttributeGraphsExt.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,10 +102,10 @@ end
102102

103103

104104
# multilayer.jl
105-
function getsquashedgraph(ng::NestedGraph{T,R,N}, sqvertices::Vector{Vector{Q}}) where {T,R<:AbstractAttributeGraph,N,Q<:Integer}
105+
function NestedGraphs.getsquashedgraph(ng::NestedGraph{T,R,N}, sqvertices::Vector{Vector{Q}}) where {T,R<:AbstractAttributeGraph,N,Q<:Integer}
106106
# squashedgraph = ng.flatgr |> deepcopy |> adjacency_matrix |> SimpleGraph
107-
squashedgraph = getsimplegraphcopy(ng)
108-
_rec_merge_vertices!(SimpleGraph(squashedgraph), sqvertices)
107+
squashedgraph = NestedGraphs.getsimplegraphcopy(ng)
108+
NestedGraphs._rec_merge_vertices!(SimpleGraph(squashedgraph), sqvertices)
109109
end
110110

111111
end

0 commit comments

Comments
 (0)