Bandwidth of undirected graphs

Definition

The bandwidth bw(M) of a matrix M is the smallest integer k such that all non-zero entries of M are at distance k from the diagonal. The bandwidth bw(G) of an undirected graph G is the minimum bandwidth of the adjacency matrix of G, over all possible relabellings of its vertices.

Path spanner: alternatively, the bandwidth measures how tightly a path represents the distance of a graph G. Indeed, if the vertices of G can be ordered as v1,...,vn in such a way that k×dG(vi,vj)|ij| then bw(G)k.

Proof: for all vivj (i.e. dG(vi,vj)=1), the constraint ensures that k|ij|, meaning that adjacent vertices are at distance at most k in the path ordering. That alone is sufficient to ensure that bw(G)k.

As a byproduct, we obtain that k×dG(vi,vj)|ij| in general: let vs0,...,vsi be the vertices of a shortest (vi,vj)-path. We have:

k×dG(vi,vj)=k×dG(vi,vs0)+k×dG(vs0,vs1)+...+k×dG(vsi1,vsi)+k×dG(vsi,vj)|vivs0|+|vs0vs1|+...+|vsi1vsi|+|vsivj||vivj|

Satisfiability of a partial assignment

Let us suppose that the first i vertices v1,...,vi of G have already been assigned positions p1,...,pi in an ordering of V(G) of bandwidth k. Where can vi+1 appear ?

Because of the previous definition, pi+1 must be at distance at most k×dG(v1,vi+1) from p1, and in general at distance at most k×dG(vj,vi+1) from pj. Each range is an interval of {1,...,n}{p1,...,pi}, and because the intersection of two intervals is again an interval we deduce that in order to satisfy all these constraints simultaneously pj must belong to an interval defined from this partial assignment.

Applying this rule to all non-assigned vertices, we deduce that each of them must be assigned to a given interval of {1,...,n}. Note that this can also be extended to the already assigned vertices, by saying that vj with j<i must be assigned within the interval [pj,pj].

This problem is not always satisfiable, e.g. 5 vertices cannot all be assigned to the elements of [10,13]. This is a matching problem which, because all admissible sets are intervals, can be solved quickly.

Solving the matching problem

Let n points v1,...,vn be given, along with two functions m,M:[n][n]. Is there an ordering p1,...,pn of them such that m(vi)piM(vi) ? This is equivalent to Hall’s bipartite matching theorem, and can in this specific case be solved by the following algorithm:

  • Consider all vertices v sorted increasingly according to M(v)

  • For each of them, assign to v the smallest position in [m(v),M(v)] which has not been assigned yet. If there is none, the assignment problem is not satisfiable.

Note that the latest operation can be performed with very few bitset operations (provided that n<64).

The algorithm

This section contains totally subjective choices, that may be changed in the hope to get better performances.

  • Try to find a satisfiable ordering by filling positions, one after the other (and not by trying to find each vertex’ position)

  • Fill the positions in this order: 0,n1,1,n2,3,n3,...

Note

There is some symmetry to break as the reverse of a satisfiable ordering is also a satisfiable ordering.

This module contains the following methods

bandwidth()

Compute the bandwidth of an undirected graph

bandwidth_heuristics()

Use Boost heuristics to approximate the bandwidth of the input graph

Functions

sage.graphs.graph_decompositions.bandwidth.bandwidth(G, k=None)

Compute the bandwidth of an undirected graph.

For a definition of the bandwidth of a graph, see the documentation of the bandwidth module.

INPUT:

  • G – a graph

  • k – integer (default: None); set to an integer value to test whether bw(G)k, or to None (default) to compute bw(G)

OUTPUT:

When k is an integer value, the function returns either False or an ordering of cost k.

When k is equal to None, the function returns a pair (bw, ordering).

See also

sage.graphs.generic_graph.GenericGraph.adjacency_matrix() – return the adjacency matrix from an ordering of the vertices.

EXAMPLES:

sage: from sage.graphs.graph_decompositions.bandwidth import bandwidth
sage: G = graphs.PetersenGraph()
sage: bandwidth(G,3)
False
sage: bandwidth(G)
(5, [0, 4, 5, 8, 1, 9, 3, 7, 6, 2])
sage: G.adjacency_matrix(vertices=[0, 4, 5, 8, 1, 9, 3, 7, 6, 2])
[0 1 1 0 1 0 0 0 0 0]
[1 0 0 0 0 1 1 0 0 0]
[1 0 0 1 0 0 0 1 0 0]
[0 0 1 0 0 0 1 0 1 0]
[1 0 0 0 0 0 0 0 1 1]
[0 1 0 0 0 0 0 1 1 0]
[0 1 0 1 0 0 0 0 0 1]
[0 0 1 0 0 1 0 0 0 1]
[0 0 0 1 1 1 0 0 0 0]
[0 0 0 0 1 0 1 1 0 0]
sage: G = graphs.ChvatalGraph()
sage: bandwidth(G)
(6, [0, 5, 9, 4, 10, 1, 6, 11, 3, 8, 7, 2])
sage: G.adjacency_matrix(vertices=[0, 5, 9, 4, 10, 1, 6, 11, 3, 8, 7, 2])
[0 0 1 1 0 1 1 0 0 0 0 0]
[0 0 0 1 1 1 0 1 0 0 0 0]
[1 0 0 0 1 0 0 1 1 0 0 0]
[1 1 0 0 0 0 0 0 1 1 0 0]
[0 1 1 0 0 0 1 0 0 1 0 0]
[1 1 0 0 0 0 0 0 0 0 1 1]
[1 0 0 0 1 0 0 1 0 0 0 1]
[0 1 1 0 0 0 1 0 0 0 1 0]
[0 0 1 1 0 0 0 0 0 0 1 1]
[0 0 0 1 1 0 0 0 0 0 1 1]
[0 0 0 0 0 1 0 1 1 1 0 0]
[0 0 0 0 0 1 1 0 1 1 0 0]