SilverSight/experiments/bosonic_continuous
allaun 539511c24d docs(bosonic): BMCTE v2 trilogy — paper, system, theory
1. BMCTE_v2_PAPER.md — regime-stability theorem, λ(p) smoothness, entropy invariance
2. SYSTEM_SPEC.md — unified GPU kernel design, fused kernel, compiler IR
3. THEORY_CLOSURE.md — categorical framework, projection stability principle, BMCTE class

All validated by bosonic_continuous experiment.

Build: 2987 jobs, 0 errors
2026-06-22 01:40:26 -05:00
..
kernel exp(bosonic): continuous interpolation experiment for regime transition 2026-06-22 01:19:10 -05:00
tests exp(bosonic): continuous interpolation experiment for regime transition 2026-06-22 01:19:10 -05:00
BMCTE_v2_PAPER.md docs(bosonic): BMCTE v2 trilogy — paper, system, theory 2026-06-22 01:40:26 -05:00
README.md exp(bosonic): continuous interpolation experiment for regime transition 2026-06-22 01:19:10 -05:00
SYSTEM_SPEC.md docs(bosonic): BMCTE v2 trilogy — paper, system, theory 2026-06-22 01:40:26 -05:00
THEORY_CLOSURE.md docs(bosonic): BMCTE v2 trilogy — paper, system, theory 2026-06-22 01:40:26 -05:00

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 estimator
  • kernel/mode_sampler.py — Mode sampling kernel
  • tests/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.