4 ms·
Elixir has a pretty nice graph library as well: https://hexdocs.pm/libgraph/api-reference.html https://hexdocs.pm/libgraph/api-reference.html I've used it to d
by technojamin 3y ago
Elixir has a pretty nice graph library as well: https://hexdocs.pm/libgraph/api-reference.html https://hexdocs.pm/libgraph/api-reference.html
I've used it to do some dependency resolution for operation ordering.
- rdtsc 3y agoThanks for sharing. That looks well done. It has some pathfinding algorithms and the reducer is very neat for traversing the graph. I like that it's based on maps, which could make it more performant than the ets based erlang digraph.