BCRARL
BCRARL
I have a (large) 3 dimensional tensor and want to create a tree using SubArrays ```julia> toy = rand(3,3,3) 3×3×3 Array{Float64,3}: [:, :, 1] = 0.576401 0.152728 0.496296 0.0284128 0.994683...
Adds `kamada_kawai_layout`, which uses the graph-theoretic distance as the equilibrium distance between two vertices. The starting point can be supplied or will be generated from a call to `shell_layout` with...
I've written a simple implementation of the Kamada Kawai layout using Optim. Is there interest in a general inclusion? If so, I'll clean it up and put in a pull-request.
For a graph containing multiple disconnected components, it would be nice to layout the individual components and then arrange the overall layout. Examples would be a grid layout or a...
Four threads with collect runs correctly ``` julia> collect(Zip(Map(identity)), 1:4) 4-element Vector{Tuple{Int64}}: (1,) (2,) (3,) (4,) ``` Replacing `collect` with `tcollect` fails due to missing `iterate` definition even in the...