mirror of
https://github.com/allaunthefox/SilverSight.git
synced 2026-07-30 17:16:16 +00:00
Architecture fixes: - Fixed phantom Semantics.* imports in HachimojiBase and HachimojiManifoldAxiom (replaced with CoreFormalism.* and SilverSight.* imports) - RRCLib.RRCEmit confirmed to exist (attacker was wrong) - Duplicate ProductSchema/ProductWireFormat confirmed NOT in SilverSightCore (attacker was wrong) Documentation fixes: - SOS example: fixed s₀ = x² (was incorrectly stated as 0) - Added Archimedean condition to Putinar's Positivstellensatz - Sidon bound: fixed to ⌊√(2N)⌋ + 1 in FIRST_PRINCIPLES (consistency with PURE_FORMULAS) - Safety margin 28× confirmed correct (attacker's 56.7× was wrong — they confused ppm with ×10^-6) Lean proof status: - repunit function: documented as 'repunit characteristic' (not mathematical repunit) - chentsov_50: 7 sorries remain (type bridge + chentsov_theorem internal sorries) - Fisher metric bridge: cross-term 1/p₀ correctly identified and documented |
||
|---|---|---|
| .. | ||
| kernel | ||
| tests | ||
| bmcte_eigensolid_threshold_receipt.json | ||
| bmcte_extension_v1.sql | ||
| bmcte_spectral_witness_receipt.json | ||
| BMCTE_v2_PAPER.md | ||
| extension_v1.py | ||
| extension_v1_receipt.json | ||
| extension_v2_chunked.py | ||
| neon_spectral_result.json | ||
| nuvmap_spectral_driver.py | ||
| README.md | ||
| SYSTEM_SPEC.md | ||
| THEORY_CLOSURE.md | ||
Bosonic Continuous Interpolation Experiment
Testing a unified Monte Carlo estimator without regime switching.
Goal
Replace hard p≥5 cutoff with continuous λ(p) interpolation:
λ(p) = exp(-p²/N)
Q(p) = λ(p) Q_bos + (1-λ(p)) Q_fact
Structure
kernel/ryser_continuous.py— Unified permanent estimatorkernel/mode_sampler.py— Mode sampling kerneltests/test_lambda_interpolation.py— Verify continuity
Key Change
Remove:
if p >= 5: distinguishable_k()
Replace with single estimator using Ryser permanent for all p ≤ 6.