Digraphs icon indicating copy to clipboard operation
Digraphs copied to clipboard

The GAP package Digraphs

Results 139 Digraphs issues
Sort by recently updated
recently updated
newest added

The Digraphs package implements a subgraph isomorphism solver in the form of `DigraphEmbedding`. It would good if we could interface with other subgraph isomorphism solver tools, such as https://github.com/ciaranm/glasgow-subgraph-solver.

feature-request

The current `CayleyDigraph` method is rather inefficient, see excerpt below: ```gap set := AsSet(G); D := Digraph(IsImmutableDigraph, G, set, OnLeftInverse, {x, y} -> LeftQuotient(x, y) in gens); ``` The issue...

performance
good-second-issue
difficulty: 1

On the Digraphs homepage, , the entities `&Digraphs;` and `⪆` are being rendered as-is, not as we want them to be rendered: This should be fixed, either by just having...

bug
minor
newcomer-friendly
technical
gap-days-brussels-2025

The excerpt is: ``` A detailed definition of the DIMACS format can be found at http://mat.gsia.cmu.edu/COLOR/general/ccformat.ps, in Section 2.1. Note that optional descriptor lines, as described in Section 2.1, will...

doc

Colour refinement is an algorithm that takes a graph $G = (V, E)$, and returns a colouring $C \colon V \to \mathbb{N}$ of the vertices such that, for any pair...

new-feature
difficulty: 2
feature-request

Computing all the edges of a partial order or lattice via `DigraphReflexiveTransitiveClosure` can be very time and memory intensive, especially for larger graphs. At the same time, many algorithms for...

new-feature

This way we can avoid writing `D!.OutNeighbours :=` everywhere in the library.

newcomer-friendly
new-feature
difficulty: 1
feature-request

The [`build-pkg-docs`](https://github.com/gap-actions/build-pkg-docs) action was recently updated to v2.2.0, with a change that ensures that references to other manuals are relative (see https://github.com/gap-actions/build-pkg-docs/pull/35). We should make a new release that includes...

doc
ci

I added a label called "VIP" that I think will be handy for making it easy to find those contributions made by VIPers. Perhaps one of those keen VIPers would...

help wanted
minor
newcomer-friendly
difficulty: 0
technical
VIP

This adds the function `DigraphMinimumCutSet` using the `DigraphMaximumFlow` method and the max-flow min-cut theorem. See issue #867.

WIP