Skip to content

Commit

Permalink
Extension namespace bug
Browse files Browse the repository at this point in the history
  • Loading branch information
filchristou committed Jun 29, 2023
1 parent ed46a04 commit 99107a4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "NestedGraphs"
uuid = "03c36417-ddab-428a-818d-5359aee292ef"
authors = ["fchrstou <[email protected]> and contributors"]
version = "0.2.1"
version = "0.2.2"

[deps]
AbstractTrees = "1520ce14-60c1-5f80-bbc7-55ef81b5835c"
Expand Down
6 changes: 3 additions & 3 deletions ext/NestedGraphsAttributeGraphsExt.jl
Original file line number Diff line number Diff line change
Expand Up @@ -102,10 +102,10 @@ end


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

end

2 comments on commit 99107a4

@filchristou
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/86496

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.2.2 -m "<description of version>" 99107a4ea242fb0067779721d089bab5d550e3d0
git push origin v0.2.2

Please sign in to comment.