nicolas-2008
Results
1
issues of
nicolas-2008
TransitiveReduction has an issue working with graph which contains not linked vertices. ``` var graph = new BidirectionalGraph(); graph.AddVertex("/test"); graph.AddVertex("/test/123"); graph.AddVertex("/test/notlinked"); graph.AddEdge(new Edge("/test", "/test/123")); var reduced = graph.ComputeTransitiveReduction(); ``` Only...