We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I see the following code in QuickGraph.Graphviz.GraphvizAlgorithm.Generate which defines the id used for each vertex:
QuickGraph.Graphviz.GraphvizAlgorithm.Generate
id
int i = 0; foreach (TVertex v in this.VisitedGraph.Vertices) this.vertexIds.Add(v, i++);
It would be nice to be able to override the default 1, 2, 3, n to maybe something defined in TVertex.
TVertex
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I see the following code in
QuickGraph.Graphviz.GraphvizAlgorithm.Generate
which defines theid
used for each vertex:It would be nice to be able to override the default 1, 2, 3, n to maybe something defined in
TVertex
.The text was updated successfully, but these errors were encountered: