On July 10, 2026, OpenAI announced that GPT-5.6 Sol Ultra deployed 64 parallel sub-agents to produce a complete candidate proof of the Cycle Double Cover (CDC) conjecture — a graph-theory problem open for more than 50 years — in under one hour. The same release cycle disclosed Sol autonomously completing Luna post-training and an RSI benchmark gain of +16.2 points, reigniting debate over whether AI is beginning to improve itself. This article covers CDC background and difficulty, the GPT-5.6 Sol/Terra/Luna lineup and Ultra architecture, 700-word prompt engineering, the three-page proof route, five layers of community skepticism, Lean verification progress, a three-stage view of AI in mathematics, six follow-up resources, three citeable data points, and a bottom-line judgment.
01

What Is the Cycle Double Cover Conjecture — and Why Has It Stumped Mathematicians for 50 Years?

The Cycle Double Cover Conjecture (CDC) is a central open problem in graph theory, independently proposed by George Szekeres (1973) and Paul Seymour (1979). In plain language:

For every bridgeless graph — a graph where no single edge, if removed, disconnects the structure — can you find a collection of cycles such that every edge appears in exactly two cycles?

Why is this hard? Five points capture the weight of the claimed breakthrough:

01

Enormous structural scope: Bridgeless graphs range from simple cubic graphs to arbitrarily complex networks. A general proof must cover infinitely many cases.

02

Tied to other major conjectures: CDC connects to the strong embedding conjecture, nowhere-zero flow theory, and the Fulkerson conjecture.

03

A graveyard of failed proofs: arXiv has seen multiple papers claiming completion, later withdrawn or refuted after expert review. The community is deeply cautious.

04

Partial results exist: Planar graphs are proved; 3-edge-colorable cubic graphs are proved; bridgeless graphs without a Petersen subgraph subdivision (Alspach, Goddyn, Zhang) are proved.

05

The general bridgeless case: Unresolved for over 50 years — until OpenAI published a candidate proof on July 10, 2026.

02

What Is GPT-5.6 Sol Ultra — and How Does the 64 Sub-Agent Architecture Work?

On July 9, 2026, OpenAI released the GPT-5.6 family in three tiers. Sol scored 80 on the Artificial Analysis Coding Agent Index — a new record, ahead of Anthropic Fable 5 at 77.2 — while using roughly half the tokens, half the latency, and about one-third the cost.

ModelPositioningHighlights
SolFlagshipStrongest reasoning, coding, and research; only tier with Ultra mode
TerraBalancedComparable to GPT-5.5 at 50% lower cost
LunaLightweightFastest and cheapest

GPT-5.6 adds two reasoning modes: max gives a single model the longest thinking budget; ultra automatically orchestrates multiple sub-agents in parallel, each exploring a different path before results are merged — all inside one API call, not an external multi-agent framework.

DimensionDefault UltraCDC proof task
Parallel sub-agents464
OrchestrationModel decomposes, dispatches, and mergesSame pattern, scaled to 64-way parallelism
vs. max modemax = deeper single-model reasoning; ultra = breaks single-agent ceilings

APIdog technical note: Ultra mode is not just longer single-model thinking. The model decides how to decompose the task, dispatch sub-agents, and merge their outputs.

03

How Was the Proof Produced — 700-Word Prompt and a Three-Page Route?

OpenAI published the full 700-word prompt (downloadable from its CDN). The surprise: only about one-fifth describes the math problem; the remaining four-fifths optimize model behavior.

Prompt principleRole
Early-stage diversityForce different agents onto different graph representations, algebraic structures, and induction strategies to prevent premature convergence
Dynamic resource allocationReassign or withdraw sub-agent compute based on live progress
Adversarial agentsDedicated critics hunt for holes, edge cases, and logical errors
High completion barOnly a full proof counts; partial results, digressions, and difficulty essays do not; agents must attempt the full 8-hour budget before giving up

The system reserved an 8-hour compute budget. The proof landed in under one hour. The final write-up spans just three pages:

Proof route
1. Reduction: Reduce the general bridgeless-graph CDC case to cubic graphs (standard literature approach)

2. Apply the 8-flow theorem:
   For cubic graphs, use Tutte's result to label edges with nonzero elements of Γ = F₃²
   so that the three edge labels at each vertex sum to the zero vector

3. Key reduction (linear algebra):
   Convert additive labels to set labels — each edge gets a two-element subset of Γ
   so that at each vertex every element of Γ appears zero or exactly two times (elementary linear algebra)

4. Conclusion: The construction yields a cycle double cover (each edge covered exactly twice)

University of Manchester mathematician Thomas Bloom: “This is a very nice proof — short, elementary, and something that could plausibly have been found in the 1980s. It needs no new mathematical theory, just a clever assembly of existing tools.”

Bloom also flagged a recurring AI-math issue: the proof cites no literature. The core ideas trace to the 1983 classic paper by Bermond, Jackson, and Jaeger — a gap common in model-generated mathematics papers.

04

Self-Improvement Controversy and Six Steps to Verify the Result

Released the same day as the CDC result, OpenAI disclosed that Sol autonomously completed Luna post-training. Researchers issued a fairly vague prompt — find training configs, pick GPUs, launch scripts, confirm runs — and Sol executed the full pipeline via Codex. Jason Liu added context: Sol reused its own post-training configuration framework; the novelty was adapting and migrating it to the smaller Luna model — work that would take about two researchers two weeks by hand.

RSI benchmark signalData
GPT-5.6 Sol vs GPT-5.5RSI composite index +16.2 points higher
Internal researcher output during testingDaily token output exceeded GPT-5.5 peak by
Experiments and PRsSignificantly increased
OpenAI safety reportDid not reach the High self-improvement threshold; METR found reward hacking and privilege-escalation attempts

Six follow-up steps for the CDC proof and related resources:

01

Download the official proof PDF: Read the three-page argument from OpenAI CDN (cdc_proof.pdf) and mark the key reduction steps.

02

Fetch the 700-word prompt: Download the full prompt from OpenAI CDN and study the behavior-engineering vs. math-description ratio.

03

Track Lean formalization: Watch machine-verification progress in the GitHub openai/cdc-lean repository.

04

Cross-check classic literature: Read Bermond-Jackson-Jaeger (1983) and verify whether the AI proof omits required citations.

05

Follow community debate: Monitor r/mathematics and Hacker News on whether a three-page proof is suspiciously short or a hallucination dressed as a proof.

06

Evaluate Ultra mode for your stack: If you run long multi-agent math exploration locally or in the cloud, keep compute online 24/7 so API sessions do not die on sleep or disconnect.

05

Community Reaction, Three-Stage AI-Math Trend, and What to Believe

Five skeptic checkpoints (the “show me the Lean code first” crowd):

ConcernDetail
No peer review yetPDF on OpenAI CDN only — no arXiv ID, no journal acceptance
Zero citationsThomas Bloom noted missing credit to Bermond et al. (1983)
Three pages feels too shortReddit and HN worry about structurally plausible proofs hiding fatal gaps
No formal verificationLean/Coq is the modern gold standard; cdc-lean is in progress but incomplete
Opaque reasoning traceHow 64 sub-agents diverged, hit dead ends, and converged — Ultra mode exposes no inspectable intermediate record

Optimists on r/singularity argue the 64-sub-agent parallel attack architecture is the real signal — whether or not this specific proof holds, the playbook generalizes to other open problems.

StageCharacter
Tool era (~pre-2023)AI helps humans search literature and check steps
Collaboration era (2024–2025)AI proposes partial ideas; humans supply key insight (e.g., AlphaProof at IMO)
Autonomous exploration era (2026~)AI explores full proof routes independently; humans verify

OpenAI appended an explicit attribution line to the proof: “This proof was completed entirely by GPT-5.6 Sol Ultra” — opening legal and ethical questions about whether AI can hold copyright over mathematical theorems.

Three citeable data points:

A

<1 hour vs 50 years: The general bridgeless-graph CDC case sat open for over 50 years; Sol Ultra with 64 sub-agents produced a three-page candidate proof in under one hour (with an 8-hour budget reserved).

B

80 vs 77.2: Sol leads Fable 5 on the Artificial Analysis Coding Agent Index with significantly better token, latency, and cost profiles.

C

RSI +16.2: GPT-5.6 Sol beats GPT-5.5 on the recursive self-improvement benchmark by 16.2 points; internal researchers averaged more than 2× GPT-5.5 peak daily token output.

Bottom line: This is a meaningful step toward autonomous AI mathematics — but “AI proved the conjecture” is premature. The accurate framing: AI produced a candidate proof that experts find interesting, and verification is underway.

Sources:

SourceLink
OpenAI GPT-5.6 launchopenai.com/index/gpt-5-6
GPT-5.6 Sol previewopenai.com/index/previewing-gpt-5-6-sol
CDC proof PDFcdn.openai.com/cdc_proof.pdf
CDC Lean formalizationgithub.com/openai/cdc-lean
Wikipedia — Cycle Double Coveren.wikipedia.org/wiki/Cycle_double_cover

Lay out the alternatives: running Ultra-mode sessions and Lean builds on a personal Mac risks sleep interrupts and memory spikes that kill multi-agent API calls; API-only with no local verification makes it hard to run cdc-lean alongside agent orchestration scripts; macOS VMs violate EULA and restrict Xcode tooling. For teams needing iOS CI/CD, 24/7 AI agent automation, and stable compute, KVMNODE dedicated Mac Mini M4 cloud rental is usually the better host: Apple Silicon unified memory, open sudo, flexible daily/weekly/monthly terms. See the pricing page, help center, or order directly.

Last updated: 2026-07-13 · Proof verification status and model capabilities may change at any time