---
title: Dominant Cycle Overlap
url: https://www.emergentmind.com/topics/dominant-cycle-overlap
type: topic
---

# Dominant Cycle Overlap

Dominant cycle overlap is not a single standardized invariant but a family of technically specific notions that arise when a system admits many cycles and only a subset governs approximation loss, steady-state transport, temporal persistence, or spectral forcing. The common structure is a two-stage selection: first, one identifies “dominant” cycles by a domain-specific criterion such as overlap-to-length ratio, cycle weight, residual activity, or spectral amplitude; second, one studies how those cycles overlap, interfere, or constrain one another. In combinatorial optimization, the dominant cycles are the cycle-cover components whose ratios exceed a threshold and determine the upper bound on total closing-edge overlap; in non-equilibrium Markov processes they are the largest-weight cycles in a flux decomposition; in helioseismology they are the lingering low-latitude bands of an outgoing solar cycle overlapping the onset of a new one; and in long-term celestial mechanics they are the normally dominant $g_2-g_5$ eccentricity oscillations that are suppressed during secular-resonance episodes [2111.03968; 1105.2178; 1606.03037; 2403.09332].

## 1. Cross-disciplinary meanings of dominance and overlap

Across the literature, “dominance” and “overlap” are defined by different operators, and conflating them obscures the underlying mathematics. In the shortest-superstring setting, overlap is a string overlap carried by arcs of a complete directed overlap graph, and dominance is attached to cycles whose overlap-to-length ratio $R(c)=o(c)/w(c)$ lies above a threshold. In non-equilibrium steady states, overlap is measured by shared vertices or directed edges between cycles, while dominance is determined by the cycle weights $m^*_\alpha$ produced by an exact flux decomposition. In solar-cycle analysis, overlap is temporal and latitudinal: it is the interval during which old-cycle low-latitude activity persists after new-cycle activity has already begun at mid-latitudes. In orbital dynamics, overlap is dynamical interference between a secular resonance and the otherwise dominant $405\ \mathrm{kyr}$ eccentricity cycle. In permutation generation, overlap is the exact matching of suffixes and prefixes in an $s$-overlap cycle, and “dominant” refers to choosing $s$ as large as possible without destroying connectivity. In graph curvature approximation, cycle overlap is used algorithmically through short cycles that minimize transport cost [2111.03968; 1105.2178; 1606.03037; 2403.09332; 1309.4741; 2606.03317].

| Domain | Dominance criterion | Overlap notion |
|---|---|---|
| Shortest superstring | $\alpha < R(c) \le 2$ large cycles dominate the bound on $O$ | String overlap on cycle-cover arcs |
| NESS cycle decomposition | Largest cycle weights $m^*_\alpha$ | Node-overlap, edge-overlap, normalized edge similarity |
| Solar cycle progression | Lingering old-cycle activity below $15^\circ$ | Temporal overlap of successive cycles |
| Earth orbital eccentricity | Dominant $g_2-g_5$ term in Earth’s eccentricity | Suppression during $\sigma_{12}$ resonance episodes |
| Permutation $s$-ocycles | Maximal feasible $s$ near $n-1$ | Exact suffix/prefix overlap |
| CCOM curvature | Short cycles prioritized in transport | Overlap of 3-, 4-, and 5-cycles around an edge |

A recurring misconception is that overlap always means direct geometric intersection of cycles. The cited work shows otherwise. Depending on the field, overlap may be concatenative, probabilistic, temporal, spectral, or algorithmic, and dominance may refer to ratios, weights, persistence, or forcing amplitude rather than mere size.

## 2. Ratio-dominant cycles in shortest-superstring approximation

In the shortest-superstring problem, the input is a set of strings $S=\{s_1,\dots,s_m\}$ with no string a substring of another. The complete directed overlap graph $G_{\mathrm{ov}}(S)=(V,E)$ has one vertex per string and an arc profit $|ov(s,t)|$ equal to the length of the longest suffix of $s$ that is also a prefix of $t$. For a directed cycle
$$
c: s_{c_0}\to s_{c_1}\to \cdots \to s_{c_{r-1}}\to s_{c_0},
$$
the distance from $s$ to $t$ is
$$
dist(s,t)=|s|-|ov(s,t)|,
$$
the total length of the cycle in the distance graph is
$$
w(c)=\sum_{i=0}^{r-1} dist(s_{c_i},s_{c_{i+1}}),
$$
the overlap of the cycle-closing edge is
$$
o(c)=|ov(s_{c_{r-1}},s_{c_0})|,
$$
and the overlap-to-length ratio is
$$
R(c)=\frac{o(c)}{w(c)}.
$$

Englert–Matsakis–Vesel classify the cycles of a maximum-overlap cycle-cover using a parameter $\alpha \approx 1.425$ into three types: small cycles with $R(c)>2$, large cycles with $\alpha < R(c)\le 2$, and extra-large cycles with $R(c)\le \alpha$. Their key observation is that the large cycles with $\alpha < R(c)\le 2$ are the dominant ones: they are exactly the cycles whose leftover overlap beyond $\alpha w(c)$ forces $\alpha$ upward in the inequality $O\le n+\alpha W$, where $n=|OPT(S)|$, $W=\sum_c w(c)$, and $O=\sum_c o(c)$ [2111.03968].

The central contribution is a pair of incomparable upper bounds on $O$:
$$
O \le n + \sum_{c:R(c)>2} w(c) + \frac{3}{2}\sum_{c:\alpha<R(c)\le2} w(c),
$$
and
$$
O \le n + \gamma \sum_{\text{small }c} w(c) + \sum_{\text{large }c} w(c),
$$
where $\gamma \approx 3.832$. A positive linear combination,
$$
(2\alpha-2)\times[\text{First bound}] + (3-2\alpha)\times[\text{Second bound}],
$$
is chosen so that all $w(c)$-sums acquire coefficient exactly $\alpha$. Solving the resulting linear system yields
$$
\alpha = \frac{1+\sqrt{57}}{6}\approx 1.425,\qquad
\gamma = \frac{31+3\sqrt{57}}{14}\approx 3.832,
$$
and hence
$$
O \le n+\alpha W.
$$

This ratio classification directly sharpens approximation guarantees. For GREEDY, the analysis gives
$$
|GREEDY(S)| \le 2n + o_c - w_c,
$$
where $o_c$ and $w_c$ are restricted to the culprit cycles isolated in the classical proof. Using $o_c\le n+\alpha w_c$ yields
$$
|GREEDY(S)| \le (2+\alpha)n,
$$
and therefore
$$
\frac{|GREEDY|}{n}\le 2+\alpha = \frac{13+\sqrt{57}}{6}\approx 3.425.
$$
For the general shortest-superstring approximation scheme, MGREEDY is also a $(2+\alpha)$-approximation, and combining it with a $\delta$-approximation for MaxATSP with $\delta=2/3$ gives
$$
2+(1-\delta)\alpha = 2+\frac{\alpha}{3} = \frac{37+\sqrt{57}}{18}\approx 2.475.
$$
These improve the earlier $3.5$ bound for GREEDY due to Kaplan and Shafrir and the $2\frac{11}{23}$-approximation algorithm of Mucha [2111.03968].

The conceptual significance is that not all high-overlap cycles are equally obstructive. Small cycles force the optimal superstring to respect the same cyclic order, large cycles yield only a weaker extracted cost, and extra-large cycles are overlap-poor enough to be absorbed into the $W$ term. The dominant-cycle overlap, in this sense, is not simply the largest overlap present in the instance; it is the overlap surplus contributed by the specific ratio band $\alpha<R(c)\le2$.

## 3. Dominant cycles and overlap measures in non-equilibrium steady states

For a finite irreducible Markov process with directed graph $G=(V,E)$, one-way steady-state fluxes are $\phi^{i*}_j=p_i^*w^i_j$, and the node condition
$$
\sum_{j\ne i}(\phi^{i*}_j-\phi^{j*}_i)=0
$$
holds at every node. A directed cycle $\alpha$ is an equivalence class of self-avoiding closed paths
$$
\alpha=(i_0\to i_1\to \cdots \to i_{s_\alpha-1}\to i_0),
$$
with cyclic rotations identified. The indicator $\chi^i_{j,\alpha}$ equals $1$ if edge $(i\to j)$ belongs to $\alpha$ and $0$ otherwise, while $\chi_{i,\alpha}=1$ if the cycle visits node $i$ [1105.2178].

Altaner and collaborators describe an iterative decomposition algorithm for the steady-state flux. After enumerating all cycles $\alpha_1,\dots,\alpha_M$ in some order, one initializes $\phi^{(1)}_{ij}\leftarrow \phi^{i*}_j$, sets
$$
m^*_{\alpha_k}=\min\{\phi^{(k)}_{ij}:\chi^i_{j,\alpha_k}=1\},
$$
updates
$$
\phi^{(k+1)}_{ij}=\phi^{(k)}_{ij}-m^*_{\alpha_k}\chi^i_{j,\alpha_k},
$$
and at the end obtains the exact decomposition
$$
\phi^{i*}_j=\sum_{k=1}^M m^*_{\alpha_k}\chi^i_{j,\alpha_k}.
$$
The non-negativity of the cycle weights and exact reconstruction follow from telescoping sums and preservation of the node condition.

Dominant cycles are then selected by their weights. One typical rule is to choose the smallest subset $D$ such that
$$
\sum_{\alpha\in D} m^*_\alpha \ge \tau \sum_{\text{all }\alpha} m^*_\alpha,
$$
with, for example, $\tau=0.9$ or $0.95$. Overlap between two cycles $\alpha$ and $\beta$ is quantified in two basic ways:
$$
O_{\mathrm{node}}(\alpha,\beta)=\sum_{i\in V}\chi_{i,\alpha}\chi_{i,\beta},
$$
which counts common vertices, and
$$
O_{\mathrm{edge}}(\alpha,\beta)=\sum_{i,j\in V}\chi^i_{j,\alpha}\chi^i_{j,\beta},
$$
which counts shared directed edges. A normalized similarity index is
$$
o(\alpha,\beta)=\frac{O_{\mathrm{edge}}(\alpha,\beta)}{\min(s_\alpha,s_\beta)}\in[0,1].
$$

The paper’s 2-particle, 4-site TASEP example makes the role of dominant-cycle overlap explicit. There are six configurations, all forward-hop rates are $1$ except hops over the periodic boundary, which occur at rate $x>0$, and the four non-trivial self-avoiding cycles of length $4$ are
$$
\alpha: 1\to3\to6\to4\to1,\quad
\beta: 1\to2\to6\to5\to1,\quad
\gamma: 1\to3\to6\to5\to1,\quad
\delta: 1\to2\to6\to4\to1.
$$
With enumeration $(\alpha,\beta,\gamma,\delta)$, the weights $m^*_\alpha(x)$ are piecewise linear. For $x>1$, $m^*_\alpha\propto x+1$, $m^*_\delta\propto x-1$, $m^*_\beta\propto 2$, and $m^*_\gamma=0$; at $x=1$, only two cycles survive; for $x<1$, $m^*_\beta\propto x+1$, $m^*_\gamma\propto 1-x$, $m^*_\alpha\propto 2x$, and $m^*_\delta=0$. At $x=1$, the dominant set changes abruptly, and the derivatives $\partial m^*_\alpha/\partial x$ have a kink there. For $x>1$, one possible dominant active set is $\{\alpha,\beta,\delta\}$, and for the pair $(\alpha,\delta)$,
$$
O_{\mathrm{node}}(\alpha,\delta)=3,\qquad
O_{\mathrm{edge}}(\alpha,\delta)=1,\qquad
o(\alpha,\delta)=\frac14.
$$
This setting shows that dominant-cycle overlap can itself change discontinuously even when the underlying steady-state fluxes vary continuously.

## 4. Overlap of successive solar cycles in helioseismic observations

In helioseismic studies of the solar cycle, overlap is defined operationally as the interval during which the old cycle’s low-latitude bands remain active after the new cycle has already begun at mid-latitudes. If $t_{\min}(\theta)$ denotes the epoch of minimum helioseismic activity at latitude $\theta$, then
$$
\Delta t_{\mathrm{overlap}}(\theta)=t_{\min}(\theta_{\mathrm{low}})-t_{\min}(\theta_{\mathrm{high}}),
$$
with $\theta_{\mathrm{low}}\lesssim 15^\circ$ and $\theta_{\mathrm{high}}\gtrsim 30^\circ$. The same paper also writes
$$
\Delta t_{\mathrm{overlap}}(\theta)=t_{\mathrm{start,new}}(\theta)-t_{\mathrm{end,old}}(\theta),
$$
but uses the $t_{\min}$ formulation because the minimum is taken as the turn-around between old and new cycles [1606.03037].

Using GONG helioseismic data, the study finds that the progression below $15^\circ$ differs materially from that at higher latitudes. In the high-frequency global $p$-mode band $3100$–$3900\ \mu\mathrm{Hz}$, which probes the very near-surface layers, the measured overlap durations are approximately $15$ months at $0^\circ$–$15^\circ$, about $3$ months at $15^\circ$–$30^\circ$, and less than $1$ month above $30^\circ$. High-degree ring-diagram modes show hemispheric asymmetry: in the $0^\circ$–$15^\circ$ band, the South reaches minimum in October 2010 and the North in September 2009, implying $\Delta t_{S-N}\simeq 13$ months; in the $15^\circ$–$30^\circ$ band, the offset is about $9$ months.

Depth dependence is resolved by separating intermediate-degree modes into three frequency ranges with upper turning points $u_p$: low-$\nu$ ($1500$–$2300\ \mu\mathrm{Hz}$, $u_p\simeq 0.9944$–$0.9987\,R_\odot$), medium-$\nu$ ($2300$–$3100\ \mu\mathrm{Hz}$, $u_p\simeq 0.9987$–$0.9998\,R_\odot$), and high-$\nu$ ($3100$–$3900\ \mu\mathrm{Hz}$, $u_p\simeq 0.9998$–$0.9999\,R_\odot$). In the $0^\circ$–$15^\circ$ band, the overlap durations are approximately $23$ months, $14$ months, and $15$ months respectively, indicating that the tail-like overlap is present at all depths down to about $0.994\,R_\odot$ and is slightly longer in the deeper layers.

The physical picture is that the cycle starts at mid-latitudes and migrates equatorward and poleward, but sunspot eruptions of the old cycle continue below $15^\circ$. That prolonged low-latitude activity delays the onset of the new cycle and produces a tail-like attachment between successive cycles. The low-latitude frequency-shift curve decays more slowly after the second maximum than the $30^\circ$–$45^\circ$ curve, and the extra residual shift of roughly one year delays the epoch of minimum by approximately $12$–$15$ months. The low-latitude signal also shows a single-peak structure, whereas latitudes above $15^\circ$ exhibit a double peak.

These observations are used as dynamo constraints. The reported interpretation is that $\alpha\Omega$ thin-shell dynamo-wave models generically produce too-long, high-latitude overlaps, whereas flux-transport dynamo models with a surface Babcock–Leighton $\alpha$-effect and a deep equatorward return flow naturally give a short $1$–$2$ year overlap confined to $\theta<15^\circ$. To match $\Delta t_{\mathrm{overlap}}(0^\circ$–$15^\circ)\approx 1.2$ yr and its depth profile, the equatorward return-flow speed at the base of the convection zone must be $V_0\approx 1$–$2\ \mathrm{m\ s^{-1}}$, and the surface poloidal-source strength must be $\alpha_{BL}\approx 10^{-3}$–$10^{-2}\ \mathrm{m\ s^{-1}}$ [1606.03037].

## 5. Resonance-induced overlap with the dominant $405\ \mathrm{kyr}$ eccentricity cycle

In long-term solar-system dynamics, Earth’s eccentricity can be represented in the Laplace–Lagrange framework by
$$
z_k=e_k e^{i\varpi_k}=\sum_{j=1}^8 E_{kj}e^{ig_j t},\qquad
\zeta_k=I_k e^{i\Omega_k}=\sum_{j=1}^8 I_{kj}e^{is_j t},
$$
where $g_j$ are apsidal precession rates and $s_j$ are nodal precession rates. The principal long-eccentricity cycle in Earth’s eccentricity is the beat frequency
$$
g_{25}=g_2-g_5,
$$
with recent-period value
$$
P_{25}=\frac{2\pi}{g_2-g_5}\approx 405\ \mathrm{kyr}.
$$
This is the familiar long eccentricity cycle dominated by Venus’ and Jupiter’s orbits [2403.09332].

The paper identifies a secular resonance
$$
\sigma_{12}=(g_1-g_2)+(s_1-s_2),
$$
tracked through the resonant angle
$$
\theta_{12}(t)=[\varpi_1(t)-\varpi_2(t)]+[\Omega_1(t)-\Omega_2(t)].
$$
Band-pass filtering is applied to $z_1,z_2,\zeta_1,\zeta_2$ using rectangular windows of $\pm10\%$ about $g_{1,2}$ and $\pm20\%$ about $s_{1,2}$. In the nonresonant regime, $\theta_{12}$ circulates monotonically through $2\pi$; during resonance, it librates about a fixed value. The effective half-width is set by the filter bandwidths, so libration occurs when
$$
|(g_1-g_2)-(s_1-s_2)|\lesssim \Delta\sigma_{12},
$$
with $\Delta\sigma_{12}\sim 0.1|g_1-g_2|+0.2|s_1-s_2|$ in the implementation.

The dominant-cycle overlap here is not a direct intersection of two cycles but a resonance episode that overlaps with, weakens, or erases the otherwise dominant $g_2-g_5$ signal. In an ensemble of $64$ independent $3.5$-Gyr integrations generated by $10^{-12}$ au perturbations to Earth’s initial position, about $40\%$ of the solutions enter one or more $\sigma_{12}$ episodes. During such episodes, the sharp $g_2$ peak in FFT spectra of Earth’s eccentricity splits into two nearby peaks of greatly reduced power, the $g_2-g_5$ beat loses coherence and amplitude, and the power of the $405\ \mathrm{kyr}$ cycle often drops below that of the short $100\ \mathrm{kyr}$ eccentricity cycle. Time-frequency plots then resemble neither the modern pattern nor typical stratigraphic Milanković signals.

The resonance episodes typically last from a few Myr up to several tens of Myr, and multiple entries and exits often occur on chaotic diffusion timescales of approximately $10^8$–$10^9$ yr. The paper reports weakened or absent long-eccentricity-cycle intervals at times such as $t\approx -500\ \mathrm{Myr}$, $-1.2\ \mathrm{Gyr}$, and $-3.2\ \mathrm{Gyr}$, without pushing Mercury’s eccentricity beyond $e\approx 0.35$. The mechanism is that chaotic diffusion in $g_1,g_2,s_1,s_2$ intermittently realizes $(g_1-g_2)\approx -(s_1-s_2)$; when $|g_1-g_2|\simeq |s_1-s_2|$, the resonant angle switches from circulation to libration, the $g_2$ mode enters a mixed state, and clean beating with $g_5$ is suppressed. Exiting the resonance restores a clean $g_2$ mode and the $405\ \mathrm{kyr}$ cycle re-emerges.

The climatic implication is a weakened eccentricity forcing. Because insolation amplitude scales as $(1-e^2)^{-1/2}$, a reduction of maximal Earth eccentricity from approximately $0.06$ to approximately $0.04$ reduces eccentricity-forcing amplitude by a factor of about $2.25$. The astrochronological implication is more disruptive: the long-held assumption that the $405\ \mathrm{kyr}$ cycle is a stable metronome requires revision, and deep-time chronologies that lock onto a continuous $g_2-g_5$ signal must permit $\mathcal O(10)$ Myr intervals in which the dominant cycle is interrupted or absent [2403.09332].

## 6. Maximal-overlap cycles for permutations

For permutations, an $s$-overlap cycle or $s$-ocycle is a cyclic listing of all $n!$ permutations of $\{0,1,\dots,n-1\}$,
$$
\pi^{(0)},\pi^{(1)},\dots,\pi^{(N-1)},
$$
such that the last $s$ symbols of $\pi^{(i)}$ agree exactly with the first $s$ symbols of $\pi^{(i+1)}$. Writing
$$
\pi^{(i)}=\alpha\beta,\qquad |\alpha|=n-s,\ |\beta|=s,
$$
and
$$
\pi^{(i+1)}=\gamma\delta,\qquad |\gamma|=s,\ |\delta|=n-s,
$$
the overlap condition is simply $\beta=\gamma$ [1309.4741].

Horan’s main theorem gives a necessary and sufficient condition for the existence of such cycles. If $d=\gcd(n,s)$, then an $s$-ocycle on all permutations of $[n]$ exists if and only if
$$
n-s>d.
$$
Equivalently,
$$
n-s>\gcd(n,s).
$$
This immediately excludes universal cycles for permutations, since the universal-cycle case $s=n-1$ gives $n-s=1=\gcd(n,n-1)$.

The proof proceeds through an Eulerian transition digraph. The vertices are length-$s$ strings that occur as prefixes or suffixes of permutations, and each permutation defines a directed edge from its $s$-prefix to its $s$-suffix. An Eulerian tour corresponds bijectively to an $s$-ocycle. The graph is balanced because every permutation beginning with a given $s$-tuple corresponds uniquely to one ending in that tuple by cyclic shift. Connectivity when $n-s>d$ is obtained by partitioning a permutation into consecutive blocks of size $d$ and showing, using rotations by $s$ and adjacent transpositions within the current $(n-s)$-suffix, that any two adjacent symbols in the $s$-prefix can be swapped. Since adjacent transpositions generate the full symmetric group, the graph is weakly connected. When $n-s=d$, the suffix stays inside a single block of length $d$, block order cannot change, and the digraph splits into disconnected components.

Two small examples illustrate the boundary sharply. For $(n,s)=(3,1)$, $\gcd(3,1)=1$ and $3-1=2>1$, so a $1$-ocycle exists:
$$
012\to 201\to 120\to 021\to 102\to 210\to 012.
$$
For $(n,s)=(4,2)$, $\gcd(4,2)=2$ and $4-2=2$, so no $2$-ocycle exists; the transition digraph splits into three disjoint components.

The paper explicitly uses “dominant” in a comparative sense: an $s$-ocycle is the next best structure to a universal cycle and retains as large an overlap as possible, with $s$ close to $n-1$, without forcing disconnection. In this combinatorial setting, dominant-cycle overlap means maximal feasible overlap subject to global traversability of the state space.

## 7. Cycle overlap as an algorithmic transport principle

A related but distinct use of cycle overlap appears in the approximation of Ollivier–Ricci curvature. For a simple, undirected, unweighted graph $G=(V,E)$ and an edge $(x,y)$, one considers neighbor measures
$$
m_u(p)=
\begin{cases}
1/d_u,& p\in N(u),\\
0,& \text{otherwise},
\end{cases}
$$
with lazy-mass parameter $a=0$, computes the $1$-Wasserstein distance
$$
W_1(m_x,m_y)=\min_{\pi}\sum_{p\in N(x),\,q\in N(y)} d(p,q)\pi(p,q),
$$
subject to the marginal constraints, and defines
$$
\kappa(x,y)=1-W_1(m_x,m_y).
$$
The CCOM method reformulates the transport around short cycles containing $(x,y)$ [2606.03317].

If one restricts attention to paths through short cycles involving $(x,y)$, then for $p\in N(x)$ and $q\in N(y)$ the distance $d(p,q)$ can only be $0,1,2,$ or $3$. For a transport plan $\pi$, define
$$
M_k(\pi)=\sum_{\substack{p\in N(x),\,q\in N(y)\\ d(p,q)=k}}\pi(p,q),\qquad k=0,1,2,3.
$$
Then
$$
C(\pi)=\sum_{k=0}^3 k\,M_k(\pi)=M_1(\pi)+2M_2(\pi)+3M_3(\pi).
$$
Mass moved along a 3-cycle contributes to $M_0$, along a 4-cycle to $M_1$, and along a 5-cycle to $M_2$. The CCOM heuristic therefore fully exploits all 3-cycles, then greedily assigns as much mass as possible to 4-cycles and 5-cycles in order of “weakest overlap first,” and finally routes any remainder at distances $2$ or $3$.

The method enumerates 3-, 4-, and 5-cycles containing the edge, constructs source and destination sets, and uses a greedy/pruning procedure that sorts sources by the number of available destinations and destinations by the number of available sources. Theoretical support is given by an optimal-transport principle: ordering any feasible plan by the lexicographically descending vector
$$
M(\pi)=(M_0,M_1,M_2,M_3)
$$
shows that maximizing $M(\pi)$ also minimizes $C(\pi)$. A coarse uniform error bound reported for the approximation is
$$
0\le \kappa(x,y)-\kappa'(x,y)
<
\frac{2}{d_x}+4\Bigl(\frac1{d_y}-\frac1{d_x}\Bigr).
$$

The final closed form for the approximate curvature when $d_x\ge d_y$ is
$$
\kappa'(x,y)
=
1-\Bigl[
\bigl(1-\tfrac1{d_x}-\tfrac1{d_y}-F_3-F_4-F_5\bigr)_+
-\bigl(1-\tfrac1{d_x}-\tfrac1{d_y}-F_3-F_4\bigr)_+
+F_3
\Bigr],
$$
where $F_3,F_4,F_5$ are the masses transported through 3-, 4-, and 5-cycles. Empirically, the method is evaluated on small graphs and large scale-free networks. The reported findings are that exact LP becomes infeasible beyond roughly $20$k nodes, CCOM scales linearly and runs in seconds on $1$-million-edge graphs, MAE on Holme–Kim scale-free random graphs up to $10^5$ nodes remains below $0.01$, and curvature-based community detection improves relative to several baselines. This is not a theory of dominant cycles in the same sense as the superstring or NESS work, but it shows that cycle overlap can be elevated from a descriptive quantity to an organizing computational principle [2606.03317].

Taken together, these literatures show that dominant cycle overlap is best understood as a structural theme rather than a single formal object. Its precise meaning depends on whether cycles are selected by ratio, weight, persistence, spectral prominence, or admissible overlap length, but the analytical role is consistent: overlap among the dominant cycles is what determines the hardest combinatorial cases, the effective transport channels, the observable switching behavior, or the failure of a previously assumed metronome.

Source: https://www.emergentmind.com/topics/dominant-cycle-overlap