In graph theory, the treewidth of an undirected graph is an integer number which specifies, informally, how far the graph is from being a tree. The smallest treewidth is 1; the graphs with treewidth 1 are exactly the trees and the forests. An example of graphs with treewidth at most 2 are the series–parallel graphs. The maximal graphs with treewidth exactly k are called k-trees, and the graphs with treewidth at most k are called partial k-trees.[1] Many other well-studied graph families also have bounded treewidth.

Treewidth may be formally defined in several equivalent ways: in terms of the size of the largest vertex set in a tree decomposition of the graph, in terms of the size of the largest clique in a chordal completion of the graph, in terms of the maximum order of a haven describing a strategy for a pursuit–evasion game on the graph, or in terms of the maximum order of a bramble, a collection of connected subgraphs that all touch each other.

Treewidth is commonly used as a parameter in the parameterized complexity analysis of graph algorithms. Many algorithms that are NP-hard for general graphs, become easier when the treewidth is bounded by a constant.

The concept of treewidth was originally introduced by Umberto Bertelè and Francesco Brioschi (1972) under the name of dimension. It was later rediscovered by Rudolf Halin (1976), based on properties that it shares with a different graph parameter, the Hadwiger number. Later it was again rediscovered by Neil Robertson and Paul Seymour (1984) and has since been studied by many other authors.[2]

Definition

edit
 
A graph with eight vertices, and a tree decomposition of it onto a tree with six nodes. Each graph edge connects two vertices that are listed together at some tree node, and each graph vertex is listed at the nodes of a contiguous subtree of the tree. Each tree node lists at most three vertices, so the width of this decomposition is two.

A tree decomposition of a graph   is a tree   in which each node is associated with a subset of vertices called a "bag". (The term node is used to refer to a vertex of   to avoid confusion with vertices of  ). The bags   must satisfy the following properties:[3]

  1. Each graph vertex is contained in at least one bag:  
  2. If bags   and   both contain a vertex  , then all bags   associated with nodes in the (unique) path of   between   and   also contain   as well. Equivalently, the bags containing vertex   are associated with a connected subtree of  .
  3. For every edge   in the graph, there is at least one bag   that contains both   and  . That is, vertices are adjacent in the graph only when their corresponding subtrees have a node in common. (However, two vertices may belong to a bag without being adjacent to each other.)

The width of a tree decomposition is the size of its largest bag   minus one. The treewidth   of a graph   is the minimum width among all possible tree decompositions of  . In this definition, the size of the largest set is diminished by one in order to make the treewidth of a tree equal to one.

Equivalently, the treewidth of   is one less than the size of the largest clique in the chordal graph containing   with the smallest clique number. A chordal graph with this clique size may be obtained by adding to   an edge between every two vertices for which at least one bag contains both vertices.

Treewidth may also be characterized in terms of havens, functions describing an evasion strategy for a certain pursuit–evasion game defined on a graph. A graph   has treewidth   if and only if it has a haven of order   but of no higher order, where a haven of order   is a function   that maps each set   of at most   vertices in   into one of the connected components of  and that obeys the monotonicity property that   whenever  .

 
A bramble of order four in a 3×3 grid graph, the existence of which shows that the graph has treewidth at least 3

A similar characterization can also be made using brambles, families of connected subgraphs that all touch each other (meaning either that they share a vertex or are connected by an edge).[4] The order of a bramble is the smallest hitting set for the family of subgraphs, and the treewidth of a graph is one less than the maximum order of a bramble.

Examples

edit

Every complete graph   has treewidth  . This is most easily seen using the definition of treewidth in terms of chordal graphs: the complete graph is already chordal, and adding more edges cannot reduce the size of its largest clique.

A connected graph with at least two vertices has treewidth 1 if and only if it is a tree. A tree has treewidth one by the same reasoning as for complete graphs (namely, it is chordal, and has maximum clique size two). Conversely, if a graph has a cycle, then every chordal completion of the graph includes at least one triangle consisting of three consecutive vertices of the cycle, from which it follows that its treewidth is at least two.

Bounded treewidth

edit

Graph families with bounded treewidth

edit

For any fixed constant  , the graphs of treewidth at most   are called the partial  -trees. Other families of graphs with bounded treewidth include the cactus graphs, pseudoforests, series–parallel graphs, outerplanar graphs, Halin graphs, and Apollonian networks.[5] The control-flow graphs arising in the compilation of structured programs also have bounded treewidth, which allows certain tasks such as register allocation to be performed efficiently on them.[6]

The planar graphs do not have bounded treewidth, because the   grid graph is a planar graph with treewidth exactly  . Therefore, if   is a minor-closed graph family with bounded treewidth, it cannot include all planar graphs. Conversely, if some planar graph cannot occur as a minor for graphs in family  , then there is a constant   such that all graphs in   have treewidth at most  . That is, the following three conditions are equivalent to each other:[7]

  1.   is a minor-closed family of bounded-treewidth graphs;
  2. One of the finitely many forbidden minors characterizing   is planar;
  3.   is a minor-closed graph family that does not include all planar graphs.

Forbidden minors

edit
 
The four forbidden minors for treewidth 3: K5 (top-left), the graph of the octahedron (bottom-left), the Wagner graph (top-right), and the graph of the pentagonal prism (bottom-right)

For every finite value of  , the graphs of treewidth at most   may be characterized by a finite set of forbidden minors. (That is, any graph of treewidth greater than   includes one of the graphs in the set as a minor.) Each of these sets of forbidden minors includes at least one planar graph.

For larger values of  , the number of forbidden minors grows at least as quickly as an exponential function of  .[9] However, known upper bounds on the size and number of forbidden minors are much higher than this lower bound.[10]

Algorithms

edit

Computing the treewidth

edit

It is  -complete to determine whether a given graph  has treewidth at most a given variable  .[11] However, when   is any fixed constant, the graphs with treewidth   can be recognized, and a width   tree decomposition constructed for them, in linear time.[12] The time dependence of this algorithm on   is exponential.

Due to the roles the treewidth plays in an enormous number of fields, different practical and theoretical algorithms computing the treewidth of a graph were developed. Depending on the application on hand, one can prefer better approximation ratio, or better dependence in the running time from the size of the input or the treewidth. The table below provides an overview of some of the treewidth algorithms. Here   is the treewidth and   is the number of vertices of an input graph  . Each of the algorithms outputs in time   a decomposition of width given in the Approximation column. For example, the algorithm of Bodlaender (1996) in time   either constructs a tree decomposition of the input graph   of width at most   or reports that the treewidth of   is more than  . Similarly, the algorithm of Bodlaender et al. (2016) in time   either constructs a tree decomposition of the input graph   of width at most   or reports that the treewidth of   is more than  . Korhonen (2021) improved the width of the decomposition to   in the same running time.

Approximation f(k) g(n) reference
exact     Arnborg, Corneil & Proskurowski (1987)
      Robertson & Seymour (1995)
      Lagergren (1996)
  (or  )     Reed (1992)
exact     Bodlaender (1996)
      Feige, Hajiaghayi & Lee (2008)
      Amir (2010)
      Amir (2010)
exact     Fomin, Todinca & Villanger (2015)
      Bodlaender et al. (2016)
      Bodlaender et al. (2016)
      Fomin et al. (2018)
      Belbasi & Fürer (2021a)
      Korhonen (2021)
      Belbasi & Fürer (2021b)
exact     Korhonen & Lokshtanov (2023)
      Korhonen & Lokshtanov (2023)
Unsolved problem in mathematics
Can the treewidth of planar graphs be computed in polynomial time?

It is not known whether determining the treewidth of planar graphs is NP-complete, or whether their treewidth can be computed in polynomial time.[13]

In practice, an algorithm of Shoikhet & Geiger (1997) can determine the treewidth of graphs with up to 100 vertices and treewidth up to 11, finding a chordal completion of these graphs with the optimal treewidth.

For larger graphs, one can use search-based techniques such as branch and bound search to compute the treewidth. These algorithms are anytime in that when stopped early, they will output an upper bound on the treewidth. An algorithm of this type was proposed in 2004 by Vibhav Gogate and Rina Dechter. To provide a lower bound on treewidth for the branches of this search, they construct a graph minor by repeatedly contracting an edge between a minimum degree vertex and one of its neighbors, until just one vertex remains. The maximum of the minimum degree over these constructed minors is guaranteed to be a lower bound on the treewidth of the graph.[14] Alex Dow and Rich Korf further improved this algorithm using best-first search.[15]

Solving other problems on graphs of small treewidth

edit

At the beginning of the 1970s, it was observed that a large class of combinatorial optimization problems defined on graphs could be efficiently solved by non serial dynamic programming as long as the graph had a bounded dimension,[16] a parameter shown to be equivalent to treewidth by Bodlaender (1998). Later, several authors independently observed at the end of the 1980s[17] that many algorithmic problems that are NP-complete for arbitrary graphs may be solved efficiently by dynamic programming for graphs of bounded treewidth, using the tree-decompositions of these graphs.

As an example, the problem of coloring a graph of treewidth   may be solved by using a dynamic programming algorithm on a tree decomposition of the graph. For each bag   of the tree decomposition, and each partition of the vertices of   into color classes, the algorithm determines whether that coloring is valid and can be extended to all descendant nodes in the tree decomposition, by combining information of a similar type computed and stored at those nodes. The resulting algorithm finds an optimal coloring of an  -vertex graph in time  , a time bound that makes this problem fixed-parameter tractable.

Courcelle's theorem

edit

For a large class of problems, there is a linear time algorithm to solve a problem from the class if a tree-decomposition with constant bounded treewidth is provided. Specifically, Courcelle's theorem[18] states that if a graph problem can be expressed in the logic of graphs using monadic second order logic, then it can be solved in linear time on graphs with bounded treewidth. Monadic second order logic is a language to describe graph properties that uses the following constructions:

  • Logic operations, such as  
  • Membership tests, such as  ,  
  • Quantifications over vertices, edges, sets of vertices, and/or sets of edges, such as  ,  ,  ,  
  • Vertex–edge incidence tests (  is an endpoint of  ), and some extensions that allow for things such as optimization.

Consider for example the 3-coloring problem for graphs. For a graph  , this problem asks if it is possible to assign each vertex   one of three colors such that no two adjacent vertices are assigned the same color. This problem can be expressed in monadic second order logic as   where  , ,   represent the subsets of vertices having each of the three colors, and where the subexpressions   are defined to mean   (It is not necessary to include in this formula the requirement that the sets   be disjoint.) Therefore, by Courcelle's results, the 3-coloring problem can be solved in linear time for a graph given a tree-decomposition of bounded constant treewidth.

edit

Pathwidth

edit

The pathwidth of a graph has a very similar definition to treewidth via tree decompositions, but is restricted to tree decompositions in which the underlying tree of the decomposition is a path graph. Alternatively, the pathwidth may be defined from interval graphs analogously to the definition of treewidth from chordal graphs. As a consequence, the pathwidth of a graph is always at least as large as its treewidth, but it can only be larger by a logarithmic factor.[5] Another parameter, the graph bandwidth, has an analogous definition from proper interval graphs, and is at least as large as the pathwidth. Other related parameters include the tree-depth, a number that is bounded for a minor-closed graph family if and only if the family excludes a path, and the degeneracy, a measure of the sparsity of a graph that is at most equal to its treewidth.

Grid minor size

edit

Because the treewidth of an   grid graph is  , the treewidth of a graph   is always greater than or equal to the size of the largest square grid minor of  . In the other direction, the grid minor theorem by Robertson and Seymour shows that there exists an unbounded function   such that the largest square grid minor of a graph of treewidth   has size at least  .[19] The best bounds known on  are that   must be at least   for some fixed constant  , and at most[20]  

(For the   notation in the lower bound, see big O notation.) Tighter bounds are known for restricted graph families, leading to efficient algorithms for many graph optimization problems on those families through the theory of bidimensionality.[21] Halin's grid theorem provides an analogue of the relation between treewidth and grid minor size for infinite graphs.[22]

Diameter and local treewidth

edit

A family   of graphs closed under taking subgraphs is said to have bounded local treewidth, or the diameter-treewidth property, if the treewidth of the graphs in the family is upper bounded by a function of their diameter. If the class is also assumed to be closed under taking minors, then   has bounded local treewidth if and only if one of the forbidden minors for   is an apex graph.[23] The original proofs of this result showed that treewidth in an apex-minor-free graph family grows at most doubly exponentially as a function of diameter;[24] later this was reduced to singly exponential[21] and finally to a linear bound.[25] Bounded local treewidth is closely related to the algorithmic theory of bidimensionality,[26] and every graph property definable in first order logic can be decided for an apex-minor-free graph family in an amount of time that is only slightly superlinear.[27]

It is also possible for a class of graphs that is not closed under minors to have bounded local treewidth. In particular this is trivially true for a class of bounded degree graphs, as bounded diameter subgraphs have bounded size. Another example is given by 1-planar graphs, graphs that can be drawn in the plane with one crossing per edge, and more generally for the graphs that can be drawn on a surface of bounded genus with a bounded number of crossings per edge. As with minor-closed graph families of bounded local treewidth, this property has pointed the way to efficient approximation algorithms for these graphs.[28]

Hadwiger number and S-functions

edit

Halin (1976) defines a class of graph parameters that he calls S-functions, which include the treewidth. These functions from graphs to integers are required to be zero on graphs with no edges, to be minor-monotone (a function   is referred to as "minor-monotone" if, whenever   is a minor of  , one has  ), to increase by one when a new vertex is added that is adjacent to all previous vertices, and to take the larger value from the two subgraphs on either side of a clique separator. The set of all such functions forms a complete lattice under the operations of elementwise minimization and maximization. The top element in this lattice is the treewidth, and the bottom element is the Hadwiger number, the size of the largest complete minor in the given graph.

Notes

edit

References

edit