Niklas Gehlen

Results 2 comments of Niklas Gehlen

At namespace.so, we're a few folks from the original Boq team at Google. We were also missing a public equivalent of Boq, so we built https://github.com/namespacelabs/foundation and are using it...

Maybe related: Adding an edge twice does not return `false` but leads to a panic when sorting the graph. ```golang graph := toposort.NewGraph(2) graph.AddNode("a") graph.AddNode("b") graph.AddEdge("a", "b") graph.AddEdge("a", "b") graph.Toposort()...