Committed Lübeck Conway-table coefficients, stored ascending by degree.
16.2. The lookup
The committed data is a raw coefficient table, stored ascending by
degree and keyed on the pair (p, n). It returns none on any pair
outside the committed table.
A small builder turns a list of natural-number coefficients into an
FpPoly p by reducing each coefficient into ZMod64 p and routing
through the normalizing constructor.
Hex.Conway.luebeckConwayPolynomialOfCoeffs (p : Nat) [Hex.ZMod64.Bounds p] (coeffs : List Nat) : Hex.FpPoly pHex.Conway.luebeckConwayPolynomialOfCoeffs (p : Nat) [Hex.ZMod64.Bounds p] (coeffs : List Nat) : Hex.FpPoly p
Build an FpPoly p from ascending natural-number coefficients.
The main entry point composes the two: it looks up the coefficient
list and, on a hit, builds the polynomial. The supported coverage is
p ∈ {2, 3, 5, 7, 11, 13} and n ∈ {1, …, 6}. Every other pair
returns none rather than triggering Tier 2 compatibility checks or
Tier 3 search.
Tier 1 imported-table lookup for committed Luebeck Conway entries.
This is only the imported-table surface: unsupported pairs return none
rather than triggering Tier 2 compatibility checks or Tier 3 search.