kragol
kragol
Any chance this package could support the `BitArray` type? Not sure how much work that would represent considering BitArray is a bit special. Currently any operation working on a BitArray...
fixes #85
In `src/PooledArrays.jl` at lines 202-203, we find the following code ```julia @inline PooledArray(t::Type) = PooledArray(Array(t,0)) @inline PooledArray(t::Type, r::Type) = PooledArray(Array(t,0), r) ``` which does not work as there is no...
The `laplacian_matrix` function for `SimpleWeightedDigraph` uses `dir=:out` as default for the `dir` parameter. This contrasts with the definition in `Graphs.jl` where `dir=:both` is the default for directed graphs. While I...