Skip to content
Discussion options

You must be logged in to vote
julia> using IGraphs

julia> g = IGraph(); # use the wrapper that internally instantiates a `igraph_t`

julia> LibIGraph.ring(g, 4, false, false, false); # use directly the C function

julia> using Graphs

julia> Graph(IGraph(Graph(g))) == Graph(g) # a quick sanity check that we are not completely borked (by converting between a Graphs.jl and a IGraphs.jl graph)
true

Replies: 2 comments 3 replies

Comment options

You must be logged in to vote
3 replies
@szhorvat
Comment options

@Krastanov
Comment options

@szhorvat
Comment options

Answer selected by Krastanov
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #2 on March 19, 2025 12:42.