Graphs.jl
Graphs.jl copied to clipboard
An optimized graphs package for the Julia programming language
Locally I very often use the following function to convert Vectors of Integers to Vector of Edges. ```julia edgeify(p::Vector{T}) where T
We may be able to accelerate some of the kernels within Graphs.jl using https://github.com/JuliaSparse/SuiteSparseGraphBLAS.jl. cc @wimmerer
The function was ported from a PR originally in the LightGraphs.jl repository. This PR changes the docstring to import Graphs.jl, the correct library. Since `rich_club` was added to Graphs.jl, but...
this is a port of [#1576](https://github.com/sbromberger/LightGraphs.jl/pull/1576)
Our tests currently almost everywhere use `SimpleGraph` and `SimpleDiGraph` for testing methods that work with `AbstractGraph` and `AbstractEege`.. This can lead to issues, when the methods under test relay on...
The "body-less" definition that is used for the index in the docs was typed as transitivereducion (without second t). No breaking change, though, since the exported function is correctly named.
issue #34, now `is_cyclic` works for undirected connected graphs.
this is a port of [#1540](https://github.com/sbromberger/LightGraphs.jl/pull/1540)
Implement `
This is a port of [#1548](https://github.com/sbromberger/LightGraphs.jl/pull/1548)