Created Unassigned: Implementation of OutEdges(TVertex v) for...
Here is the implementation for BidirectionalGraph :``` public IEnumerable<TEdge> OutEdges(TVertex v){ IEnumerable<TEdge> result; if (this.TryGetInEdges(v, out result)) return result; else...
View ArticleCreated Unassigned: Bug in AlgorithmBase ?! [65209]
For my Version, I fixed the below in AlgorithmBase.cs (commented out the original code and added PendingAbortion state) and it works fine now when aborting an Algorithm using Abort().The switch case...
View ArticleCreated Unassigned: GraphvizColor Struct is not rendering ARGB values...
There is an issue with GraphvizColor. The ARGB values are not rendered correctly due to the bug in the following code. public byte A { get { return this.a; } } public byte R { get { return this.a; } }...
View ArticleCreated Unassigned: Edge equality backwards? [65877]
I am using an UndirectedGraph with a default TEdge of UndirectedEdge. I set AllowParallelEdges to false. However, I was surprised to find that I could still create an edge between two existing...
View ArticleCreated Unassigned: Please add .NET Standard support [65901]
Hi there,Now that Portable has been replaced with .NET Standard, would you please consider porting your invaluable library to it?Thanks.
View Article