// omni-pasm runtime · paradox engine

electron-cloud
escape fractal

escape lives between Λ (radial basin) and Β (orbit-trap basin), weighted by an electron-cloud ψ that holds points in superposition.

R_MULTI · LIVE REGISTERS-- fps
r_bound
HOLO_PROJ 3D→2D · --
r_multi
MW_SPLIT {Λ,Β} · julia
ψ-cloud
3d z² · ρ̄=--
κ-couple
-- J · phase --
CCT
budget -- · n̄=--
target 60 fps · GPU collapse · rAF-locked
MW_SPLIT · WORLD CONFIG
julia branch
mandelbrot branch
ψ · ELECTRON-CLOUD ORBITAL
2p z
3d z²
2p x
3d xy
Β · ORBIT-TRAP BASIN
cross
ring
point
CCT_COLLAPSE · PARAMETERS
κ · cloud coupling0.85
ψ · cloud gain0.55
N · collapse budget (iters)220
ω · phase / spin speed0.50
render scale1.00
drag pan · wheel zoom · dbl-click reset
in julia: shift-drag sets c

omni-pasm source → glsl transpile

;=====================================================================
; Paradox Fractal — "Electron-Cloud Escape"
; escape criterion lies BETWEEN two coherent sets and a cloud ψ
;=====================================================================
RENDER_FRAME:
    HOLO_PROJ   r_bulk(z∈ℂ) -> r_bound(screen)     ; bulk → 2D horizon
    MW_SPLIT    r_multi, { Λ: radial_basin , Β: orbit_trap_basin }
ITERATE:
    MAP         z <- z² + c                       ; quadratic flow, BOTH worlds
    UNCERTAIN   ψ <- orbital(z, n,l,m, spin=phase) ; electron-cloud density
    MEAS        aΛ <- |z|²  ;  aΒ <- trap(z)
    ; cloud raises the Λ wall and tightens the Β throat:
    CMP         aΛ ,  Rα·(1 + κ·ψ)              ; collapse → Λ if breached
    CMP         aΒ ,  ε /(1 + κ·ψ)              ; collapse → Β if breached
    JMPP        COLLAPSE if breached
    LOOP        ITERATE until n == N_max          ; else NOVIKOV cycle = interior
COLLAPSE:
    CCT_COLLAPSE r_multi, budget=N, objective=min_entropy -> r_world
    INTERFERE    color, phase = cloudAccum·π       ; quantum fringes on boundary
    OUTPUT       r_bound.pixel
    HALT