What The Controller Found
DCC auto-discovered that or-opt should dominate the kick budget — contradicting the default choice in classical ILS-TSP practice.
In the standard Iterated Local Search lineage for TSP, double-bridge is the canonical perturbation operator. It has been the default since at least the 1990s — used in Chained Lin-Kernighan (Applegate et al., 2003) and in Helsgaun’s LKH. Or-opt, by contrast, is traditionally a local search operator, not a perturbation. Using it as a kick is unconventional.
DCC v2 was given four kick types with equal initial weight: double-bridge, or-opt-1, or-opt-2, and or-opt-3. Nobody told it to prefer any of them. It measured improvements-per-move for each type and reallocated budget based on what was working. Here is what it found:
```
qa194 · DCC v2 · single worker
Or-opt-3 took 48% of the budget
- double-bridge: 17%
- or-opt-1: 17%
- or-opt-2: 16%
- or-opt-3: 48%
Or-opt-3 dominated by nearly 3:1 over any other type. The controller converged on this allocation independently — through measurement, not instruction.
uy734 · DCC v2 · winner W0
Or-opt variants collectively: 76%
- double-bridge: 23%
- or-opt-1: 14%
- or-opt-2: 25%
- or-opt-3: 37%
Different instance, 4× larger. The controller independently arrived at a similar conclusion: or-opt variants should dominate the search budget.
The real finding: complementarity, not replacement
On both instances, double-bridge found the final decisive improvement — the critical basin escape that reached the best tour. Or-opt dominated the budget but double-bridge delivered the breakthrough. The DCC allocated correctly: or-opt as the workhorse intensifier, double-bridge as the rarer basin-escape move.
This is not “we overturned 30 years of TSP practice.” It is a narrower, still-serious empirical claim: within the classical double-bridge-centered ILS lineage, the controller adaptively shifted most perturbation budget to or-opt variants across two benchmark instances at different scales, while retaining double-bridge for decisive escapes. The idea of adaptive operator selection exists in the metaheuristics literature. What appears to be new is this specific result: or-opt as perturbation (not local search) outperforming double-bridge on continuous improvement rate, discovered by an autonomous controller without human guidance.
Claim status: VERIFIED (kick distributions measured from test battery). Interpretation: REASONED (GPT-validated; complementarity framing is the strongest honest reading of the data). Generality: instance-specific evidence, not yet tested on broader benchmark sets.
```