From 740dcb91286b7c48a0863cf7980b42c12e230769 Mon Sep 17 00:00:00 2001 From: Shay Date: Sun, 17 May 2026 18:38:43 -0700 Subject: [PATCH] fix(en_seeder): repair invalid hex literal blocking pulse import 0xC0_RELOG0 contained non-hex digits (R, L, G) producing a SyntaxError at module import, which made core pulse unable to load the GloVe-backed manifold. Replace the wordplay constant with the equivalent integer literal from the comment (3236855408) so the deterministic seed is preserved and the import path is restored. --- language_packs/en_seeder.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/language_packs/en_seeder.py b/language_packs/en_seeder.py index 98f953fd..122f6fa6 100644 --- a/language_packs/en_seeder.py +++ b/language_packs/en_seeder.py @@ -71,9 +71,9 @@ MANIFOLD_RESIDUAL_TOLERANCE = 1e-5 # sub-space. # - Rows 5..31: structured bivector projection via a random orthogonal # complement, seeded deterministically so the matrix is always the same. -# The seed RNG is fixed to numpy.random.default_rng(seed=0xC0_RE_LOG0S) so -# the lift is reproducible across machines and Python versions. -_RNG_SEED = 0xC0_RELOG0 # 0xC0RELOG0 = 3236855408 +# The seed RNG is fixed so the lift is reproducible across machines and +# Python versions. +_RNG_SEED = 3236855408 _rng = np.random.default_rng(seed=_RNG_SEED) # Build the full (32 x 50) projection matrix once at import time.