Papers
Topics
Authors
Recent
Search
2000 character limit reached

Hedge Connectivity in Graphs

Updated 25 February 2026
  • Hedge Connectivity is defined as the minimum number of hedges whose removal disconnects a graph, generalizing classical edge and hyperedge connectivity with shared failure dependencies.
  • It leverages label-induced groups to analyze network robustness through combinatorial bounds, submodular-like properties, and the construction of hedge adjacency graphs.
  • Algorithmic approaches include quasipolynomial and fixed-parameter methods to address NP-hard cases, driving new insights in network reliability and optimization.

Hedge connectivity generalizes classical edge and hyperedge connectivity by grouping edges or (hyper)edges into “hedges”—collections of edges, often with shared labels or failure dependencies—which may be removed as indivisible units. The hedge connectivity of a graph or hedgegraph is defined as the minimum number of hedges whose removal disconnects the graph. This concept encompasses non-overlapping labeled graphs, overlapping labeled graphs, general hedgegraphs, and is strictly more general than hypergraph connectivity. Hedge connectivity appears in applications such as optical networks, network reliability with group failures, and is studied under several formalizations in combinatorics and algorithmic graph theory (Xu et al., 2020, Chandrasekaran et al., 29 Oct 2025, Fomin et al., 2024, Xu et al., 2019).

1. Formal Definitions and Equivalences

Let G=(V,E)G = (V, E) be an undirected graph or hypergraph. A hedge is a subset of edges or hyperedges, and the set of hedges forms a partition (in the non-overlapping case) or possibly a covering (in the overlapping case) of EE or HH. More formally:

  • In the labeled graph setting, each edge eEe \in E has one or more labels: λ(e)L\lambda(e) \subseteq L.
  • Each label L\ell \in L induces a hedge H()={eE:λ(e)}H(\ell) = \{e \in E : \ell \in \lambda(e)\}.
  • The hedge connectivity λH(G)\lambda_H(G) is the minimum S|S| such that removal of all edges covered by the hedges S{H1,,Hk}S \subseteq \{H_1,\dots,H_k\} disconnects GG (Xu et al., 2020, Fomin et al., 2024).

For hedgegraphs as defined in polymatroid theory, one has (V,H,χ:H{1,,r})(V, H, \chi : H \to \{1,\dots,r\}), where the coloring χ\chi induces the hedge partition. The Hedge Connectivity problem is equivalent to the Hedge Cut problem for k=2k=2, that is, finding a minimum cardinality set of hedges whose removal disconnects GG into two or more components (Fomin et al., 2024, Xu et al., 2019). Variants include the source–sink (s–t) hedge cut, global (all pairs) hedge cut, weighted/unweighted, and overlapping/non-overlapping formulations (Xu et al., 2019).

2. Combinatorial Structure and Extremal Bounds

Key combinatorial parameters include:

  • Label degree dL(v)d_L(v): Number of hedges incident to vertex vv.
  • Minimum label degree δL(G)=minvVdL(v)\delta_L(G) = \min_{v \in V} d_L(v) (Xu et al., 2020).
  • Hedge adjacency degree dA(Hi)d_A(H_i): Number of hedges sharing at least one vertex with hedge HiH_i.
  • Hedge adjacency graph GAG_A: Vertices are hedges, edges link hedges sharing vertices.

The following upper bounds universally hold: λH(G)δL(G)ΔL(G)maxidA(Hi)χ(GA),\lambda_H(G) \le \delta_L(G) \le \Delta_L(G) \le \max_i d_A(H_i) \le \chi(G_A), where χ(GA)\chi(G_A) is the chromatic number of the hedge adjacency graph (Xu et al., 2020). These bounds can be tight; for cycles with hedges as pairs of disjoint edges, all inequalities can be equalities.

The label-count function g(F)=eFλ(e)g(F)=|\bigcup_{e\in F} \lambda(e)| is submodular, but the hedge-cut function itself is non-submodular in general hedgegraphs (Chandrasekaran et al., 29 Oct 2025, Xu et al., 2019). This lack of submodularity complicates algorithm design.

3. Algorithmic Theory and Fixed Parameter Tractability

Several tractability boundary results have been established:

  • For general (non-overlapping) hedge connectivity, Ghaffari, Karger, and Panigrahi exhibited a quasipolynomial-time algorithm (Fomin et al., 2024).
  • Assuming the Exponential Time Hypothesis, no polynomial-time algorithm exists in general [(Fomin et al., 2024), SODA 2023].
  • The problem is fixed-parameter tractable (FPT) parameterized by solution size \ell, with running time (O(logn)+)mO(1)c(n+m)O(1)\binom{O(\log n)+\ell}{\ell} \cdot m^{O(1)} \le c^{\ell} (n+m)^{O(1)}, for any fixed c>1c>1 (Fomin et al., 2024).
  • Extension to kk-component disconnection (Hedge kk-Cut): running time (O(klogn)+)nO(k)mO(1)\binom{O(k\log n)+\ell}{\ell} \cdot n^{O(k)} \cdot m^{O(1)}, with similar randomized contraction and recursion techniques (Fomin et al., 2024).

Key algorithmic ingredients include recursive branching on large hedges, randomized contractions when all hedges are small, brute-force in small parameter regimes, and degree-based early cutoff tests (Fomin et al., 2024). The approach leverages contraction operations, exploiting the fact that contracting a hedge not in the optimal cut does not destroy optimality (Fomin et al., 2024, Xu et al., 2020).

In several restricted cases, global (not s–t) hedge connectivity is polynomial-time solvable, including graphs of bounded treewidth, bounded degree, planar graphs, and when each hedge is connected or of constant span (Xu et al., 2020).

4. Polymatroidal and Partition-Based Perspectives

In general hedgegraphs, classical edge-cut submodularity fails, motivating partition-based and polymatroidal approaches:

  • Partition connectivity PCGPC_G for hedgegraphs: For a partition P\mathcal{P} of VV, δG(P)\delta_G(\mathcal{P}) counts hedges interfacing two parts. Then,

PCG=minPδG(P)P1.PC_G = \min_\mathcal{P} \left\lfloor \frac{|\delta_G(\mathcal{P})|}{|\mathcal{P}|-1} \right\rfloor.

  • Weak partition connectivity WPCGWPC_G is defined via contracted part-wise component counts, always 12λGWPCGλG\frac{1}{2}\lambda_G \le WPC_G \le \lambda_G (Chandrasekaran et al., 29 Oct 2025).

A natural polymatroid P(G)=(E,fG)\mathcal{P}(G) = (E, f_G) is defined by fG(A)=VComps(V,A)f_G(A) = |V| - \text{Comps}(V, A). The partition connectivity PCGPC_G is the polymatroidal unit-weight strength, and WPCGWPC_G and functional strength k(fG)k^*(f_G) interpolate between PCGPC_G and the true min-cut λG\lambda_G (Chandrasekaran et al., 29 Oct 2025).

These perspectives enable deterministic polynomial-time computation of PCGPC_G via submodular-minimization or matroid intersection, and O(logn)O(\log n)-approximation of λG\lambda_G. Furthermore, results such as Nash–Williams/Tutte-style decompositions generalize: A hedgegraph is kk-partition-connected if and only if it contains kk hedge-disjoint 1-partition-connected sub-hedgegraphs (Chandrasekaran et al., 29 Oct 2025).

5. Complexity, Inapproximability, and Approximation

Hedge connectivity is NP-hard for source-sink cuts (even in the non-overlapping, unweighted case) (Xu et al., 2019, Xu et al., 2020). The status for the non-overlapping, global version remains open (Xu et al., 2019).

Inapproximability results include:

  • No PTAS for the s–t cut (overlapping or non-overlapping), and unweighted s–t hedge connectivity is hard to approximate within 2log1o(1)n2^{\log^{1-o(1)} n} unless P=NPP=NP.
  • APX-hardness for overlapping s–t hedge cut; no (1o(1))lnn(1-o(1)) \ln n-approximation for the global versions unless P=NPP=NP (Xu et al., 2019).

Approximation algorithms leverage greedy hitting sets, LP rounding, and contraction-based methods:

  • Source–sink minimum label cut: O(m)O(\sqrt{m})-approximation via repeated shortest s–t path covering.
  • Global minimum label cut: Randomized contraction plus sparsification achieves (1+ϵ)(1+\epsilon)-approximation in quasipolynomial time (Xu et al., 2019, Fomin et al., 2024).

Partition connectivity admits polynomial-time computation and acts as an efficiently computable surrogate, always within a factor $2$ of λG\lambda_G (Chandrasekaran et al., 29 Oct 2025).

6. Open Problems and Future Directions

Several core questions remain unresolved:

  • Deciding the complexity status of global hedge connectivity (non-overlapping, no degree or span bound), i.e., whether it is in PP or NPNP-hard (Xu et al., 2020, Xu et al., 2019).
  • Existence of deterministic FPT algorithms for global hedge connectivity; current FPT algorithms inherently rely on randomization (Fomin et al., 2024).
  • Non-existence of polynomial-sized kernels parameterized by solution size \ell is conjectured, but unproven (Fomin et al., 2024).
  • Developing faster or streaming/distributed algorithms for large-scale or dynamic graphs (Xu et al., 2019).
  • Applying polymatroidal techniques for tighter bounds, improved sparsification, and further generalizations to overlapping hedges or directed graphs (Chandrasekaran et al., 29 Oct 2025).
  • Relationships to classical results: For instance, whether a true Menger-type theorem holds in some regime and connections with multicut, multiway-cut, and label multicut under group failure semantics (Xu et al., 2019).

A plausible implication is that further structural insights into the polymatroid associated with hedges may enable stronger approximation, kernelization, or decomposition theorems applicable to broader classes of networks.

Hedge connectivity formalizes network robustness under correlated edge (or component) failures, such as shared-risk link groups in optical and IP/MPLS networks, and arises in contexts including synchronous optical networks and image segmentation (Xu et al., 2019). The abstraction also unifies and extends classical edge, hyperedge, and label-sensitive connectivity models.

Partition-based and polymatroidal connectivity metrics inform the design of sparsification routines, randomized sampling, and decomposition algorithms in both combinatorial optimization and algorithmic graph theory, while also highlighting the challenges posed by non-submodularity and overlapping group structures (Chandrasekaran et al., 29 Oct 2025).

Definition Search Book Streamline Icon: https://streamlinehq.com
References (4)

Topic to Video (Beta)

No one has generated a video about this topic yet.

Whiteboard

No one has generated a whiteboard explanation for this topic yet.

Follow Topic

Get notified by email when new papers are published related to Hedge Connectivity.