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
gap> D := Digraph([[2, 4, 5], [1, 4], [4, 7], [1, 2, 3, 5, 6, 7], > [1, 4], [4, 7], [3, 4, 6]]); <digraph with 7 vertices, 20 edges> gap> IsBiconnectedDigraph(D); true gap> H := DigraphRemoveVertex(D, 4); <digraph with 6 vertices, 8 edges> gap> IsConnectedDigraph(H); false
The text was updated successfully, but these errors were encountered:
As I'm sure you know, the source of the bug lies in ArticulationPoints, rather than in IsBiconnectedDigraph itself.
ArticulationPoints
IsBiconnectedDigraph
Here's another example:
gap> gr := DigraphFromGraph6String("FlCX?"); <digraph with 7 vertices, 16 edges> gap> ArticulationPoints(gr); [ 3 ] gap> Filtered([1 .. 7], v -> not IsConnectedDigraph(DigraphRemoveVertex(gr, v))); [ 3, 4 ]
Sorry, something went wrong.
I think you have to change gap/attr.gi:73 from low[v] := low[w]; to low[v] := num[w];
gap/attr.gi:73
low[v] := low[w];
low[v] := num[w];
8d92b8a
james-d-mitchell
No branches or pull requests
The text was updated successfully, but these errors were encountered: