The Lorentz Prime Predictor is a research repo with one primary goal: build a scientifically defensible seed for the $n$th prime by treating prime growth as something to be measured against a stable scale rather than read as raw magnitude alone.
The benchmark program and the minimal runtime surface are supporting parts of that goal. The benchmarks test whether the measurement idea produces a real advantage. The runtime keeps the result narrow, deterministic, and easy to audit as a research instrument.
The official repository benchmark suite is now the exact power-of-ten anchor suite on
It compares the four main formulas on one clean exact surface with no stage labels:
lpp_seedlegacy_lpp_seedcipolla_log5_repacked_seedli_inverse_seed
In relativity, motion becomes more informative when it is written as
That idea led to two different lines of work.
One line stayed in closed form. It asked for the strongest fully derived algebraic seed we could defend without smuggling in chosen constants. The best result from that line is cipolla_log5_repacked. It is the strongest retained closed-form seed in the repository. On the official exact benchmark suite, it stays ahead of li_inverse_seed through exact 10^16, then loses at exact 10^17 and exact 10^18.
The other line stopped asking for a prettier algebraic correction and asked a different question: if the counting model is better, should the seed come from inverting that better model directly? That produced r_inverse_seed, a deterministic inversion seed built from a truncated Riemann counting function and a fixed Newton rule. On the official exact benchmark suite, it is sole best on 16 anchors, tied best at 10^4, and best-or-tied-best on every anchor from 10^2 through 10^18.
Those are different kinds of objects, so the repository keeps them separate. cipolla_log5_repacked is the best retained answer to the closed-form question. r_inverse_seed is the strongest exact seed result now in hand. They are judged on the same official benchmark suite, but they are not collapsed into one claim.
The decade-anchor view makes the split visible. The closed-form line stays competitive for a surprisingly long stretch and remains the best retained closed-form answer through exact
The shipped runtime surface is still intentionally narrow. The public implementation remains lpp_seed and lpp_refined_predictor, but lpp_seed now uses the deterministic r_inverse construction as the official runtime path. The older formulas remain in code as alternates. Published exact runtime values remain committed on the power-of-ten grid
The benchmark result and the runtime default are now aligned: the strongest exact seed result in hand is also the shipped seed path.
The benchmark language also stays narrow. This repository keeps three provenance classes separate: published exact, reproducible exact, and local continuation. Exact results and local continuation results are both useful, but they are not described as the same kind of evidence. The official benchmark suite uses only the published exact anchor class. The older stage-based exact and local runs remain available as supporting research artifacts, not as the top-level benchmark surface.
If you want the clean current decisions, start with docs/CANDIDATE_CATEGORIES.md.
If you want the shipped runtime contract, read:
If you want the benchmark rules and claim boundaries, read:
If you want the official benchmark suite artifact, read:
If you want the origin of the measurement idea, read docs/ORIGIN.md.
If you want supporting benchmark artifacts for the retained leaders, read:
The older stage-by-stage scaling notes for the shipped lpp_seed program remain available as historical support in:

