Y
Hacker News
new
|
ask
|
show
|
jobs
by
flymaipie
598 days ago
As an elixir dev I am wondering what exactly you’re missing?
1 comments
zem
598 days ago
most recently, maximum matching over a graph (edmond's blossom algorithm)
link
flymaipie
598 days ago
That actually sounds like a perfect use case for a Rust NIF in Elixir, since graph matching can be a performance issue
link
biorach
598 days ago
> maximum matching over a graph (edmond's blossom algorithm)
Ruby/Rails has this?
link
zem
598 days ago
ruby does indeed, as do python and javascript. here's the ruby library:
https://github.com/jaredbeck/graph_matching
link