Digraphs
Digraphs copied to clipboard
The GAP package Digraphs
This reverts #504, in other words, it adds again the code that was in #459. Since the code in this PR is buggy (see #487), it was removed from the...
This PR fixes some bugs introduced in #459
Edit: ( @reiniscirpons ): the current implementation seems have some bug and it fails on `DigraphFromGraph6String("HoStIv{")` (this is [Graph 33668](https://houseofgraphs.org/graphs/33668) on house of graphs). The expected output is 4, currently...
Just a minor note. @fingolfin noticed in https://github.com/digraphs/Digraphs/pull/535#issue-1185461066: > `DIGRAPHS_OmitFromTests` is initialized once and then not updated. This could be fixed, e.g. by removing `DIGRAPHS_OmitFromTests` and modifying the code which...
The README in `digraphs-lib v0.6` points to the old `gap-packages` URL in two places. This should be updated.
``` gap> gr := Digraph(IsMutableDigraph, [[2, 2], []]); gap> DigraphsUseBliss(); #I Using bliss by default for AutomorphismGroup . . . gap> AutomorphismGroup(gr); Group([ (), (1,2) ]) gap> DigraphsUseNauty(); #I Using...
Graphviz
This is a reworking of #639, which goes a bit further than #639 in removing the old stuff for displays. This PR doesn't introduce any breaking changes except that we...
``` gap> DigraphByEdges([ [1,2], [3,0] ]); Error, the 1st argument must not contain values greater than 3, the 2nd argument , ``` Well, nothing is greater than 3! What the...
Broadly speaking, a dreadnaut file starts with "configuration" information about the graph, such as the number of vertices (denoted by 'n'), the start index for vertex numbering (denoted by '$')...