Filippos Christou
Filippos Christou
if the output is muted with `;` everything works as expected, but if not then error is thrown. MWE ```julia julia> using POMDPs, POMDPModels, POMDPTools julia> mdp = SimpleGridWorld(); julia>...
`is_directed(::Type{CustomGraph})::Bool` should be defined to be consistent with Graphs.jl https://juliagraphs.org/Graphs.jl/dev/ecosystem/interface/
`add_vertex!` is supposed to return a `Bool` and `add_vertices!` an integer notating the number of vertices that were added. Usually `add_vertices` uses iteratively `add_vertex`, but this package deals with this...
Is there a well-defined way/example of how to solve shortest path for Multigraphs.jl ? Since `weights(mg::Multigraph)` returns a `N x N` matrix, where N is the vertices number, I see...
Many graph implementations support empty constructors. e.g. SimpleGraph, MetaGraph.. Some of my code in NestedGraphs.jl uses this to initialize a graph. Due to this I couldn't construct a NestedGraph{MultiGraph} kind...
an easy, but unneeded, and breaking change. Only reason: the package will be compliant with the julia Graphs.jl ecosystem naming conventions. If the package intends to go v1.0.0 maybe this...
Is there any reason why this wouldn't play with `DiGraphs` ? If you are interested I can push a branch with a constructor `D3Tree(::DiGraph)` I will actually just transform the...
It looks like `Flux.huber_loss` is type unstable when it comes to Zygote autodiff ? ```julia using Flux, Zygote import Statistics: mean function internfunc_nobroad(m, x, y) modelvals = m(x) Flux.mse(modelvals, y)...
Right now `remote_module!` uses string interpolation and relies on the magic syntax to generate the `:in_module` command. Maybe we can directly use `send_and_receive(:in_module, module)` or something similar to avoid that.
This repo is outdated. http://www.topology-zoo.org/ follows a different format.