star-magic-program 0.206.0__tar.gz → 0.209.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {star_magic_program-0.206.0 → star_magic_program-0.209.0}/CHANGELOG.md +29 -0
- {star_magic_program-0.206.0 → star_magic_program-0.209.0}/CITATION.cff +1 -1
- {star_magic_program-0.206.0 → star_magic_program-0.209.0}/PKG-INFO +20 -11
- {star_magic_program-0.206.0 → star_magic_program-0.209.0}/README.md +14 -9
- {star_magic_program-0.206.0 → star_magic_program-0.209.0}/SESSION_LOG.md +23 -0
- {star_magic_program-0.206.0 → star_magic_program-0.209.0}/WHITEPAPER_INDEX.md +4 -4
- {star_magic_program-0.206.0 → star_magic_program-0.209.0}/pyproject.toml +8 -2
- {star_magic_program-0.206.0 → star_magic_program-0.209.0}/star_magic_program.egg-info/PKG-INFO +20 -11
- {star_magic_program-0.206.0 → star_magic_program-0.209.0}/star_magic_program.egg-info/SOURCES.txt +1 -0
- star_magic_program-0.209.0/star_magic_program.egg-info/requires.txt +4 -0
- {star_magic_program-0.206.0 → star_magic_program-0.209.0}/uqff_calculator.py +113 -1
- {star_magic_program-0.206.0 → star_magic_program-0.209.0}/uqff_fidelity_tests.py +47 -1
- {star_magic_program-0.206.0 → star_magic_program-0.209.0}/COMMERCIAL.md +0 -0
- {star_magic_program-0.206.0 → star_magic_program-0.209.0}/LICENSE +0 -0
- {star_magic_program-0.206.0 → star_magic_program-0.209.0}/LICENSE-AGPL-3.0.txt +0 -0
- {star_magic_program-0.206.0 → star_magic_program-0.209.0}/LICENSE-MIT-INITIAL.txt +0 -0
- {star_magic_program-0.206.0 → star_magic_program-0.209.0}/NOTICE +0 -0
- {star_magic_program-0.206.0 → star_magic_program-0.209.0}/UNIFIED_REGISTRY_FALSIFIABILITY.md +0 -0
- {star_magic_program-0.206.0 → star_magic_program-0.209.0}/UNIFIED_REGISTRY_PROGRAM_PLAN.md +0 -0
- {star_magic_program-0.206.0 → star_magic_program-0.209.0}/UNIFIED_REGISTRY_RESULTS_TABLE.md +0 -0
- {star_magic_program-0.206.0 → star_magic_program-0.209.0}/UNIFIED_REGISTRY_SCHEMA.md +0 -0
- {star_magic_program-0.206.0 → star_magic_program-0.209.0}/UNIFIED_REGISTRY_STATUS_REPORT.md +0 -0
- {star_magic_program-0.206.0 → star_magic_program-0.209.0}/UNIFIED_REGISTRY_VERSION.txt +0 -0
- {star_magic_program-0.206.0 → star_magic_program-0.209.0}/_BUILD_LOG.md +0 -0
- {star_magic_program-0.206.0 → star_magic_program-0.209.0}/registry_generator.py +0 -0
- {star_magic_program-0.206.0 → star_magic_program-0.209.0}/setup.cfg +0 -0
- {star_magic_program-0.206.0 → star_magic_program-0.209.0}/star_magic_program.egg-info/dependency_links.txt +0 -0
- {star_magic_program-0.206.0 → star_magic_program-0.209.0}/star_magic_program.egg-info/top_level.txt +0 -0
- {star_magic_program-0.206.0 → star_magic_program-0.209.0}/uqff_registry_graph.py +0 -0
- {star_magic_program-0.206.0 → star_magic_program-0.209.0}/uqff_registry_primitives.py +0 -0
- {star_magic_program-0.206.0 → star_magic_program-0.209.0}/uqff_registry_status.py +0 -0
- {star_magic_program-0.206.0 → star_magic_program-0.209.0}/uqff_registry_xgeo.py +0 -0
|
@@ -7,6 +7,35 @@ Versioning: [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
|
7
7
|
|
|
8
8
|
---
|
|
9
9
|
|
|
10
|
+
## [0.209.0] — 2026-07-31 — PAPER_205 DO-OVER + DEPENDENCY SUPPORT
|
|
11
|
+
|
|
12
|
+
### Fixed / Added
|
|
13
|
+
- **Re-ships PAPER_205** after v0.208.0 failed CI and Release. Root cause: PAPER_205 imports sympy, but the package declared ZERO dependencies and the workflows never installed anything, so sympy was absent on the runners. The framework legitimately needs the scientific stack (sympy for symbolic derivations; numpy/scipy/mpmath for numerics) and more papers will too — the fix SUPPORTS it rather than working around it.
|
|
14
|
+
- Declared `dependencies = [sympy>=1.12, mpmath>=1.3, numpy>=1.24, scipy>=1.10]` in pyproject (verified in built `Requires-Dist`). `ci.yml` and `release-to-pypi.yml` now `pip install .` before the gate. The gate fails fast with a clear message if a declared dependency is missing.
|
|
15
|
+
- PAPER_205 keeps its sympy implementation: Q_n = x·Q_{n-1} + (n-1)·Q_{n-2} (probabilist Hermite); the 26-state sum is an orthogonal spectral expansion of compressed gravity; Q_26(0) = 25!! = 7,905,853,580,625 (printed 17!! corrected) and the false "roots on the unit circle" claim corrected (roots are real).
|
|
16
|
+
- v0.208.0 skipped on PyPI; v0.209.0 supersedes it. **One paper per ship:** PAPER_206 is NOT in this release — it ships separately as v0.210.0.
|
|
17
|
+
- Gate: 1,351 assertions, 0 failures. Registry: 472 rows / 1011 edges / 209 ledgers (measured).
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
## [0.208.0] — 2026-07-31 — BAND 1: PAPER_205 — RAMANUJAN/HERMITE Q_n
|
|
22
|
+
|
|
23
|
+
### Added
|
|
24
|
+
- **PAPER_205 dispatch** (Ramanujan/Hermite Q_n + 26-state sum, S50, sec 2.6): the recurrence Q_n = x·Q_{n-1} + (n-1)·Q_{n-2} (probabilist Hermite, imaginary argument) backing the 26-layer structure. The UQFF 26-state sum is a GENUINE orthogonal spectral expansion of the compressed-gravity series on L^2(R, e^-x^2/2) — recurrence, Q_0..Q_7, generating function e^{xt+t^2/2}, orthogonality, and Stirling connection all VERIFIED. TWO ERRORS CORRECTED via direct SymPy computation: (1) Q_26 lower coefficients mis-transcribed — printed constant 34,459,425 = 17!! (Q_18(0)); true Q_26(0) = 25!! = 7,905,853,580,625 (the "26!!/2" identity also wrong); (2) the sec-3.1 "roots on unit circle" claim is FALSE — Hermite roots are real (|z| 0.31-8.92).
|
|
25
|
+
- OPEN_RULING Q-201.
|
|
26
|
+
- Gate: 1,351 assertions, 0 failures. Registry: 472 rows / 1011 edges / 209 ledgers (measured).
|
|
27
|
+
|
|
28
|
+
---
|
|
29
|
+
|
|
30
|
+
## [0.207.0] — 2026-07-31 — BAND 1: PAPER_204 — DARK MATTER
|
|
31
|
+
|
|
32
|
+
### Added
|
|
33
|
+
- **PAPER_204 dispatch** (dark matter, S50, sec 2.6): NFW profile+rotation curve, SIDM core formation, virial mass, strong lensing, void evolution, peculiar velocity under both F_UBii+Um. Real anchors verified (MW NFW rho_s 0.3 GeV/cm^3 r_s 20 kpc v_c 220 km/s, Coma M_vir ~5e14, SIDM s/m<1.25 Bullet Cluster, SDP.81 ALMA lens). NFW/virial forms correct; core-cusp tension stated honestly with SIDM resolution; ties to predecessor PAPER_1962 M31 rotation + 1015/1019 NFW/DM buoyancy. UQFF-adjacent: vacuum-Lambda shifts Einstein radius ~0.1%.
|
|
34
|
+
- OPEN_RULING Q-200.
|
|
35
|
+
- Gate: 1,345 assertions, 0 failures. Registry: 470 rows / 1008 edges / 208 ledgers (measured).
|
|
36
|
+
|
|
37
|
+
---
|
|
38
|
+
|
|
10
39
|
## [0.206.0] — 2026-07-31 — BAND 1: PAPER_203 — INFLATION COSMOLOGY
|
|
11
40
|
|
|
12
41
|
### Added
|
|
@@ -3,7 +3,7 @@ message: "If you use Star-Magic-Program (UQFF systematic rebuild) in your resear
|
|
|
3
3
|
type: software
|
|
4
4
|
title: "Star-Magic-Program: UQFF Systematic Rebuild"
|
|
5
5
|
abbreviation: "UQFF"
|
|
6
|
-
version: "0.
|
|
6
|
+
version: "0.209.0"
|
|
7
7
|
date-released: "2026-07-28"
|
|
8
8
|
authors:
|
|
9
9
|
- family-names: "Murphy"
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: star-magic-program
|
|
3
|
-
Version: 0.
|
|
4
|
-
Summary: UQFF Star-Magic-Program v0.
|
|
3
|
+
Version: 0.209.0
|
|
4
|
+
Summary: UQFF Star-Magic-Program v0.209.0: PAPER_205 (Ramanujan/Hermite Q_n; 26-state sum = orthogonal spectral expansion; Q_26 constant + unit-circle errors corrected) re-shipped after the v0.208.0 CI break, with proper dependency support - sympy/mpmath/numpy/scipy now declared and pip-installed by CI/Release before the gate. Q-201. Wired 209/2255, gate 1351/0. Registry 472 rows / 1011 edges / 209 ledgers (measured).
|
|
5
5
|
Author-email: "Daniel T. Murphy" <daniel.murphy00@enrgyone.com>
|
|
6
6
|
License: AGPL-3.0-or-later OR LicenseRef-StarMagic-Commercial
|
|
7
7
|
Project-URL: Homepage, https://github.com/Daniel8Murphy0007/Star-Magic-Program
|
|
@@ -26,19 +26,23 @@ License-File: LICENSE
|
|
|
26
26
|
License-File: LICENSE-AGPL-3.0.txt
|
|
27
27
|
License-File: LICENSE-MIT-INITIAL.txt
|
|
28
28
|
License-File: NOTICE
|
|
29
|
+
Requires-Dist: sympy>=1.12
|
|
30
|
+
Requires-Dist: mpmath>=1.3
|
|
31
|
+
Requires-Dist: numpy>=1.24
|
|
32
|
+
Requires-Dist: scipy>=1.10
|
|
29
33
|
Dynamic: license-file
|
|
30
34
|
|
|
31
35
|
# Star-Magic-Program
|
|
32
36
|
|
|
33
|
-
[](https://pypi.org/project/star-magic-program/)
|
|
38
|
+
[](https://pypi.org/project/star-magic-program/)
|
|
35
39
|
[](https://star-magic-program.readthedocs.io/en/latest/?badge=latest)
|
|
36
40
|
[](LICENSE)
|
|
37
|
-
[](uqff_fidelity_tests.py)
|
|
42
|
+
[](uqff_calculator.py)
|
|
39
43
|
[](whitepapers/)
|
|
40
44
|
|
|
41
|
-
**UQFF systematic rebuild — v0.
|
|
45
|
+
**UQFF systematic rebuild — v0.209.0 wiring campaign live**
|
|
42
46
|
Author: Daniel T. Murphy · Star-Magic Research Program
|
|
43
47
|
License: AGPL-3.0-or-later OR Commercial
|
|
44
48
|
|
|
@@ -77,7 +81,7 @@ Mizuno, Rossi).
|
|
|
77
81
|
Full framework physics lives in the whitepaper corpus — the physics is the
|
|
78
82
|
whitepapers; the calculator computes what the whitepapers derive.
|
|
79
83
|
|
|
80
|
-
## What is currently shipped (v0.
|
|
84
|
+
## What is currently shipped (v0.209.0)
|
|
81
85
|
|
|
82
86
|
### Wiring campaign — LIVE (see `CLAUDE.md` charter)
|
|
83
87
|
|
|
@@ -85,7 +89,7 @@ Sequential wiring of all 2,255 whitepapers, starting at PAPER_001.
|
|
|
85
89
|
Authorized 2026-07-28: autonomous band sessions, ship per session via
|
|
86
90
|
`ship.ps1`, full stop at PAPER_500 for manual review.
|
|
87
91
|
|
|
88
|
-
**Wired so far:
|
|
92
|
+
**Wired so far: 209 / 2,255** (11 ✓ · 198 ⚠ OPEN_RULING · 201 rulings queued) — Hermite spectral basis; dependency support fixed (205)
|
|
89
93
|
|
|
90
94
|
| Paper | Content | Key result |
|
|
91
95
|
|---|---|---|
|
|
@@ -296,6 +300,8 @@ Authorized 2026-07-28: autonomous band sessions, ship per session via
|
|
|
296
300
|
| PAPER_201 | GW Lifecycle Chain | both channels; GW150914/Hulse-Taylor verified; Q-197 |
|
|
297
301
|
| PAPER_202 | Cosmic Dawn | BBN/CMB/reion anchors verified; BUCKET C tie; Q-198 |
|
|
298
302
|
| PAPER_203 | Inflation Cosmology | n_s/r/σ8/BAO verified; low-l CMB prediction; Q-199 |
|
|
303
|
+
| PAPER_204 | Dark Matter | NFW/SIDM/virial/lens verified; core-cusp honest; Q-200 |
|
|
304
|
+
| PAPER_205 | Ramanujan Q_n | spectral expansion genuine; Q_26 + root errors corrected; Q-201 |
|
|
299
305
|
|
|
300
306
|
### Corpus (2,419 files)
|
|
301
307
|
- `whitepapers/` — 2,255 `.md` files + 1 `.bak` — physics source of truth
|
|
@@ -306,7 +312,7 @@ Authorized 2026-07-28: autonomous band sessions, ship per session via
|
|
|
306
312
|
v5.86.0 UNIFIED_REGISTRY R5 baseline). **Registry-clean.**
|
|
307
313
|
- `uqff_calculator.py` — `DISPATCH` grows one paper at a time;
|
|
308
314
|
`calc(paper_id, dataset)` public interface.
|
|
309
|
-
- `uqff_fidelity_tests.py` — 9-block gate (1,
|
|
315
|
+
- `uqff_fidelity_tests.py` — 9-block gate (1,351 assertions), locking every
|
|
310
316
|
primitive identity + every wired paper's stated values. Runs on every ship.
|
|
311
317
|
|
|
312
318
|
### Registry pantheon (live, grows per band)
|
|
@@ -533,7 +539,10 @@ Authorized 2026-07-28: autonomous band sessions, ship per session via
|
|
|
533
539
|
| v0.203.0 | Band 1: PAPER_200 | 204 |
|
|
534
540
|
| v0.204.0 | Band 1: PAPER_201 | 205 |
|
|
535
541
|
| v0.205.0 | Band 1: PAPER_202 | 206 |
|
|
536
|
-
|
|
|
542
|
+
| v0.206.0 | Band 1: PAPER_203 | 207 |
|
|
543
|
+
| v0.207.0 | Band 1: PAPER_204 | 208 |
|
|
544
|
+
| v0.208.0 (skipped: CI break) | Band 1: PAPER_205 | 209 |
|
|
545
|
+
| **v0.209.0** ← current | Band 1: PAPER_205 (do-over + deps) | 209 |
|
|
537
546
|
| v0.4.0+ | One band per session (~20-80 papers each) | growing |
|
|
538
547
|
| PAPER_500 milestone | FULL STOP — Daniel's manual review | 500 |
|
|
539
548
|
| v1.0.0 | Full whitepaper coverage | 2,255 |
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
# Star-Magic-Program
|
|
2
2
|
|
|
3
|
-
[](https://pypi.org/project/star-magic-program/)
|
|
4
|
+
[](https://pypi.org/project/star-magic-program/)
|
|
5
5
|
[](https://star-magic-program.readthedocs.io/en/latest/?badge=latest)
|
|
6
6
|
[](LICENSE)
|
|
7
|
-
[](uqff_fidelity_tests.py)
|
|
8
|
+
[](uqff_calculator.py)
|
|
9
9
|
[](whitepapers/)
|
|
10
10
|
|
|
11
|
-
**UQFF systematic rebuild — v0.
|
|
11
|
+
**UQFF systematic rebuild — v0.209.0 wiring campaign live**
|
|
12
12
|
Author: Daniel T. Murphy · Star-Magic Research Program
|
|
13
13
|
License: AGPL-3.0-or-later OR Commercial
|
|
14
14
|
|
|
@@ -47,7 +47,7 @@ Mizuno, Rossi).
|
|
|
47
47
|
Full framework physics lives in the whitepaper corpus — the physics is the
|
|
48
48
|
whitepapers; the calculator computes what the whitepapers derive.
|
|
49
49
|
|
|
50
|
-
## What is currently shipped (v0.
|
|
50
|
+
## What is currently shipped (v0.209.0)
|
|
51
51
|
|
|
52
52
|
### Wiring campaign — LIVE (see `CLAUDE.md` charter)
|
|
53
53
|
|
|
@@ -55,7 +55,7 @@ Sequential wiring of all 2,255 whitepapers, starting at PAPER_001.
|
|
|
55
55
|
Authorized 2026-07-28: autonomous band sessions, ship per session via
|
|
56
56
|
`ship.ps1`, full stop at PAPER_500 for manual review.
|
|
57
57
|
|
|
58
|
-
**Wired so far:
|
|
58
|
+
**Wired so far: 209 / 2,255** (11 ✓ · 198 ⚠ OPEN_RULING · 201 rulings queued) — Hermite spectral basis; dependency support fixed (205)
|
|
59
59
|
|
|
60
60
|
| Paper | Content | Key result |
|
|
61
61
|
|---|---|---|
|
|
@@ -266,6 +266,8 @@ Authorized 2026-07-28: autonomous band sessions, ship per session via
|
|
|
266
266
|
| PAPER_201 | GW Lifecycle Chain | both channels; GW150914/Hulse-Taylor verified; Q-197 |
|
|
267
267
|
| PAPER_202 | Cosmic Dawn | BBN/CMB/reion anchors verified; BUCKET C tie; Q-198 |
|
|
268
268
|
| PAPER_203 | Inflation Cosmology | n_s/r/σ8/BAO verified; low-l CMB prediction; Q-199 |
|
|
269
|
+
| PAPER_204 | Dark Matter | NFW/SIDM/virial/lens verified; core-cusp honest; Q-200 |
|
|
270
|
+
| PAPER_205 | Ramanujan Q_n | spectral expansion genuine; Q_26 + root errors corrected; Q-201 |
|
|
269
271
|
|
|
270
272
|
### Corpus (2,419 files)
|
|
271
273
|
- `whitepapers/` — 2,255 `.md` files + 1 `.bak` — physics source of truth
|
|
@@ -276,7 +278,7 @@ Authorized 2026-07-28: autonomous band sessions, ship per session via
|
|
|
276
278
|
v5.86.0 UNIFIED_REGISTRY R5 baseline). **Registry-clean.**
|
|
277
279
|
- `uqff_calculator.py` — `DISPATCH` grows one paper at a time;
|
|
278
280
|
`calc(paper_id, dataset)` public interface.
|
|
279
|
-
- `uqff_fidelity_tests.py` — 9-block gate (1,
|
|
281
|
+
- `uqff_fidelity_tests.py` — 9-block gate (1,351 assertions), locking every
|
|
280
282
|
primitive identity + every wired paper's stated values. Runs on every ship.
|
|
281
283
|
|
|
282
284
|
### Registry pantheon (live, grows per band)
|
|
@@ -503,7 +505,10 @@ Authorized 2026-07-28: autonomous band sessions, ship per session via
|
|
|
503
505
|
| v0.203.0 | Band 1: PAPER_200 | 204 |
|
|
504
506
|
| v0.204.0 | Band 1: PAPER_201 | 205 |
|
|
505
507
|
| v0.205.0 | Band 1: PAPER_202 | 206 |
|
|
506
|
-
|
|
|
508
|
+
| v0.206.0 | Band 1: PAPER_203 | 207 |
|
|
509
|
+
| v0.207.0 | Band 1: PAPER_204 | 208 |
|
|
510
|
+
| v0.208.0 (skipped: CI break) | Band 1: PAPER_205 | 209 |
|
|
511
|
+
| **v0.209.0** ← current | Band 1: PAPER_205 (do-over + deps) | 209 |
|
|
507
512
|
| v0.4.0+ | One band per session (~20-80 papers each) | growing |
|
|
508
513
|
| PAPER_500 milestone | FULL STOP — Daniel's manual review | 500 |
|
|
509
514
|
| v1.0.0 | Full whitepaper coverage | 2,255 |
|
|
@@ -2330,3 +2330,26 @@ Wired 7/2,255 (2 ✓, 5 ⚠). Rulings Q-001..Q-007 open. Next: PAPER_008.
|
|
|
2330
2330
|
- Campaign: 207/2,255 (11 ✓, 196 ⚠). Next: PAPER_204.
|
|
2331
2331
|
|
|
2332
2332
|
---
|
|
2333
|
+
|
|
2334
|
+
## 2026-07-31 — v0.207.0 — BAND 1: PAPER_204
|
|
2335
|
+
|
|
2336
|
+
- PAPER_204 wired (⚠ Q-200): dark-matter sector. NFW/SIDM/virial/lensing anchors verified; core-cusp tension honest; predecessor PAPER_1962 tie; ~0.1% lensing prediction.
|
|
2337
|
+
- Campaign: 208/2,255 (11 ✓, 197 ⚠). Next: PAPER_205.
|
|
2338
|
+
|
|
2339
|
+
---
|
|
2340
|
+
|
|
2341
|
+
## 2026-07-31 — v0.208.0 — BAND 1: PAPER_205
|
|
2342
|
+
|
|
2343
|
+
- PAPER_205 wired (⚠ Q-201): Ramanujan/Hermite Q_n. 26-state sum = genuine orthogonal spectral expansion; two math errors corrected via direct SymPy computation (Q_26 constant 25!! vs printed 17!!; false unit-circle root claim -> real roots).
|
|
2344
|
+
- Campaign: 209/2,255 (11 ✓, 198 ⚠). Next: PAPER_206.
|
|
2345
|
+
|
|
2346
|
+
---
|
|
2347
|
+
|
|
2348
|
+
## 2026-07-31 — v0.209.0 — PAPER_205 DO-OVER + DEPENDENCY SUPPORT
|
|
2349
|
+
|
|
2350
|
+
- v0.208.0 (PAPER_205) failed CI + Release: PAPER_205 imports sympy, but pyproject declared ZERO dependencies and the workflows never installed anything - sympy absent on the runners. Root-caused from the actual CI workflow (matrix 3.9-3.13, no install) + faithful git-archive reproduction.
|
|
2351
|
+
- CORRECT FIX (support, not workaround): declared dependencies [sympy, mpmath, numpy, scipy]; ci.yml + release-to-pypi.yml now `pip install .` before the gate; gate fails fast + clear if a dep is missing. PAPER_205 KEEPS sympy (Q_26(0) = 25!!). Reverted the earlier pure-Python workaround + stdlib guard.
|
|
2352
|
+
- ONE PAPER PER SHIP: PAPER_206 backed out of this release entirely - it ships separately as v0.210.0. v0.209.0 = the PAPER_205 do-over alone.
|
|
2353
|
+
- Standing lesson: dispatches may use sympy/numpy/scipy/mpmath (declared deps); any new required library goes in pyproject `dependencies`. Wired 209/2,255; gate 1,351.
|
|
2354
|
+
|
|
2355
|
+
---
|
|
@@ -11,9 +11,9 @@
|
|
|
11
11
|
## Summary
|
|
12
12
|
|
|
13
13
|
- **Total papers:** 2255
|
|
14
|
-
- **Wired:**
|
|
14
|
+
- **Wired:** 209 (11 ✓, 198 ⚠ OPEN_RULING)
|
|
15
15
|
- **OPEN targets:** 0
|
|
16
|
-
- **Not yet touched:**
|
|
16
|
+
- **Not yet touched:** 2046
|
|
17
17
|
|
|
18
18
|
---
|
|
19
19
|
|
|
@@ -1352,7 +1352,7 @@
|
|
|
1352
1352
|
| ⬜ | PAPER_2047 | COMPOSED PREFIX CLASSES POPULATION AUDIT UQFF |
|
|
1353
1353
|
| ⬜ | PAPER_2048 | ROUND 179 TRIAD BACKBONE FIRST UQFF |
|
|
1354
1354
|
| ⬜ | PAPER_2049 | ROUND 180 SINGLE BACKBONE FIRST UQFF |
|
|
1355
|
-
|
|
|
1355
|
+
| ⚠ | PAPER_204 | UQFF Dark Matter NFW SIDM Rotation Curves Virial Theorem |
|
|
1356
1356
|
| ⬜ | PAPER_2050 | ROUND 181 40 ROUND MILESTONE SINGLE BACKBONE FIRST UQFF |
|
|
1357
1357
|
| ⬜ | PAPER_2051 | ROUND 182 SINGLE BACKBONE FIRST UQFF |
|
|
1358
1358
|
| ⬜ | PAPER_2052 | LANDMARK D PHYS MINUS 1 FAMILY AUDIT UQFF |
|
|
@@ -1363,7 +1363,7 @@
|
|
|
1363
1363
|
| ⬜ | PAPER_2057 | ROUND 187 TRIAD BACKBONE FIRST UQFF |
|
|
1364
1364
|
| ⬜ | PAPER_2058 | R100 R149 RETROSPECTIVE SWEEP SINGLE UQFF |
|
|
1365
1365
|
| ⬜ | PAPER_2059 | ROUND 188 SINGLE BACKBONE FIRST UQFF |
|
|
1366
|
-
|
|
|
1366
|
+
| ⚠ | PAPER_205 | Ramanujan Polynomials Q26 UQFF 26State Summations |
|
|
1367
1367
|
| ⬜ | PAPER_2060 | TON618 QUAD 4 OBJECT AGN FAMILY UQFF |
|
|
1368
1368
|
| ⬜ | PAPER_2061 | ROUND 189 200TH NOVEL MILESTONE UQFF |
|
|
1369
1369
|
| ⬜ | PAPER_2062 | ROUND 190 DIAD BACKBONE FIRST UQFF |
|
|
@@ -4,14 +4,20 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "star-magic-program"
|
|
7
|
-
version = "0.
|
|
8
|
-
description = "UQFF Star-Magic-Program v0.
|
|
7
|
+
version = "0.209.0"
|
|
8
|
+
description = "UQFF Star-Magic-Program v0.209.0: PAPER_205 (Ramanujan/Hermite Q_n; 26-state sum = orthogonal spectral expansion; Q_26 constant + unit-circle errors corrected) re-shipped after the v0.208.0 CI break, with proper dependency support - sympy/mpmath/numpy/scipy now declared and pip-installed by CI/Release before the gate. Q-201. Wired 209/2255, gate 1351/0. Registry 472 rows / 1011 edges / 209 ledgers (measured)."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
authors = [
|
|
11
11
|
{ name = "Daniel T. Murphy", email = "daniel.murphy00@enrgyone.com" }
|
|
12
12
|
]
|
|
13
13
|
license = { text = "AGPL-3.0-or-later OR LicenseRef-StarMagic-Commercial" }
|
|
14
14
|
requires-python = ">=3.9"
|
|
15
|
+
dependencies = [
|
|
16
|
+
"sympy>=1.12",
|
|
17
|
+
"mpmath>=1.3",
|
|
18
|
+
"numpy>=1.24",
|
|
19
|
+
"scipy>=1.10",
|
|
20
|
+
]
|
|
15
21
|
keywords = [
|
|
16
22
|
"unified field theory",
|
|
17
23
|
"vacuum physics",
|
{star_magic_program-0.206.0 → star_magic_program-0.209.0}/star_magic_program.egg-info/PKG-INFO
RENAMED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: star-magic-program
|
|
3
|
-
Version: 0.
|
|
4
|
-
Summary: UQFF Star-Magic-Program v0.
|
|
3
|
+
Version: 0.209.0
|
|
4
|
+
Summary: UQFF Star-Magic-Program v0.209.0: PAPER_205 (Ramanujan/Hermite Q_n; 26-state sum = orthogonal spectral expansion; Q_26 constant + unit-circle errors corrected) re-shipped after the v0.208.0 CI break, with proper dependency support - sympy/mpmath/numpy/scipy now declared and pip-installed by CI/Release before the gate. Q-201. Wired 209/2255, gate 1351/0. Registry 472 rows / 1011 edges / 209 ledgers (measured).
|
|
5
5
|
Author-email: "Daniel T. Murphy" <daniel.murphy00@enrgyone.com>
|
|
6
6
|
License: AGPL-3.0-or-later OR LicenseRef-StarMagic-Commercial
|
|
7
7
|
Project-URL: Homepage, https://github.com/Daniel8Murphy0007/Star-Magic-Program
|
|
@@ -26,19 +26,23 @@ License-File: LICENSE
|
|
|
26
26
|
License-File: LICENSE-AGPL-3.0.txt
|
|
27
27
|
License-File: LICENSE-MIT-INITIAL.txt
|
|
28
28
|
License-File: NOTICE
|
|
29
|
+
Requires-Dist: sympy>=1.12
|
|
30
|
+
Requires-Dist: mpmath>=1.3
|
|
31
|
+
Requires-Dist: numpy>=1.24
|
|
32
|
+
Requires-Dist: scipy>=1.10
|
|
29
33
|
Dynamic: license-file
|
|
30
34
|
|
|
31
35
|
# Star-Magic-Program
|
|
32
36
|
|
|
33
|
-
[](https://pypi.org/project/star-magic-program/)
|
|
38
|
+
[](https://pypi.org/project/star-magic-program/)
|
|
35
39
|
[](https://star-magic-program.readthedocs.io/en/latest/?badge=latest)
|
|
36
40
|
[](LICENSE)
|
|
37
|
-
[](uqff_fidelity_tests.py)
|
|
42
|
+
[](uqff_calculator.py)
|
|
39
43
|
[](whitepapers/)
|
|
40
44
|
|
|
41
|
-
**UQFF systematic rebuild — v0.
|
|
45
|
+
**UQFF systematic rebuild — v0.209.0 wiring campaign live**
|
|
42
46
|
Author: Daniel T. Murphy · Star-Magic Research Program
|
|
43
47
|
License: AGPL-3.0-or-later OR Commercial
|
|
44
48
|
|
|
@@ -77,7 +81,7 @@ Mizuno, Rossi).
|
|
|
77
81
|
Full framework physics lives in the whitepaper corpus — the physics is the
|
|
78
82
|
whitepapers; the calculator computes what the whitepapers derive.
|
|
79
83
|
|
|
80
|
-
## What is currently shipped (v0.
|
|
84
|
+
## What is currently shipped (v0.209.0)
|
|
81
85
|
|
|
82
86
|
### Wiring campaign — LIVE (see `CLAUDE.md` charter)
|
|
83
87
|
|
|
@@ -85,7 +89,7 @@ Sequential wiring of all 2,255 whitepapers, starting at PAPER_001.
|
|
|
85
89
|
Authorized 2026-07-28: autonomous band sessions, ship per session via
|
|
86
90
|
`ship.ps1`, full stop at PAPER_500 for manual review.
|
|
87
91
|
|
|
88
|
-
**Wired so far:
|
|
92
|
+
**Wired so far: 209 / 2,255** (11 ✓ · 198 ⚠ OPEN_RULING · 201 rulings queued) — Hermite spectral basis; dependency support fixed (205)
|
|
89
93
|
|
|
90
94
|
| Paper | Content | Key result |
|
|
91
95
|
|---|---|---|
|
|
@@ -296,6 +300,8 @@ Authorized 2026-07-28: autonomous band sessions, ship per session via
|
|
|
296
300
|
| PAPER_201 | GW Lifecycle Chain | both channels; GW150914/Hulse-Taylor verified; Q-197 |
|
|
297
301
|
| PAPER_202 | Cosmic Dawn | BBN/CMB/reion anchors verified; BUCKET C tie; Q-198 |
|
|
298
302
|
| PAPER_203 | Inflation Cosmology | n_s/r/σ8/BAO verified; low-l CMB prediction; Q-199 |
|
|
303
|
+
| PAPER_204 | Dark Matter | NFW/SIDM/virial/lens verified; core-cusp honest; Q-200 |
|
|
304
|
+
| PAPER_205 | Ramanujan Q_n | spectral expansion genuine; Q_26 + root errors corrected; Q-201 |
|
|
299
305
|
|
|
300
306
|
### Corpus (2,419 files)
|
|
301
307
|
- `whitepapers/` — 2,255 `.md` files + 1 `.bak` — physics source of truth
|
|
@@ -306,7 +312,7 @@ Authorized 2026-07-28: autonomous band sessions, ship per session via
|
|
|
306
312
|
v5.86.0 UNIFIED_REGISTRY R5 baseline). **Registry-clean.**
|
|
307
313
|
- `uqff_calculator.py` — `DISPATCH` grows one paper at a time;
|
|
308
314
|
`calc(paper_id, dataset)` public interface.
|
|
309
|
-
- `uqff_fidelity_tests.py` — 9-block gate (1,
|
|
315
|
+
- `uqff_fidelity_tests.py` — 9-block gate (1,351 assertions), locking every
|
|
310
316
|
primitive identity + every wired paper's stated values. Runs on every ship.
|
|
311
317
|
|
|
312
318
|
### Registry pantheon (live, grows per band)
|
|
@@ -533,7 +539,10 @@ Authorized 2026-07-28: autonomous band sessions, ship per session via
|
|
|
533
539
|
| v0.203.0 | Band 1: PAPER_200 | 204 |
|
|
534
540
|
| v0.204.0 | Band 1: PAPER_201 | 205 |
|
|
535
541
|
| v0.205.0 | Band 1: PAPER_202 | 206 |
|
|
536
|
-
|
|
|
542
|
+
| v0.206.0 | Band 1: PAPER_203 | 207 |
|
|
543
|
+
| v0.207.0 | Band 1: PAPER_204 | 208 |
|
|
544
|
+
| v0.208.0 (skipped: CI break) | Band 1: PAPER_205 | 209 |
|
|
545
|
+
| **v0.209.0** ← current | Band 1: PAPER_205 (do-over + deps) | 209 |
|
|
537
546
|
| v0.4.0+ | One band per session (~20-80 papers each) | growing |
|
|
538
547
|
| PAPER_500 milestone | FULL STOP — Daniel's manual review | 500 |
|
|
539
548
|
| v1.0.0 | Full whitepaper coverage | 2,255 |
|
|
@@ -58,7 +58,7 @@ from uqff_registry_primitives import (
|
|
|
58
58
|
DELTA_M2_21_EV2, DELTA_M2_32_EV2,
|
|
59
59
|
)
|
|
60
60
|
|
|
61
|
-
VERSION = "0.
|
|
61
|
+
VERSION = "0.209.0"
|
|
62
62
|
|
|
63
63
|
# =============================================================================
|
|
64
64
|
# DISPATCH TABLE — grown one whitepaper at a time.
|
|
@@ -10668,3 +10668,115 @@ def _paper_203(dataset):
|
|
|
10668
10668
|
'residual_pct': 0.0,
|
|
10669
10669
|
'status': 'OPEN_RULING',
|
|
10670
10670
|
}
|
|
10671
|
+
|
|
10672
|
+
|
|
10673
|
+
@_register('PAPER_204')
|
|
10674
|
+
def _paper_204(dataset):
|
|
10675
|
+
"""UQFF dark-matter structural physics (S50, sec 2.6).
|
|
10676
|
+
|
|
10677
|
+
Dark-matter sector under both F_UBii and Um channels:
|
|
10678
|
+
NFW density profile + rotation curve, SIDM core
|
|
10679
|
+
formation, virial-theorem mass, strong lensing
|
|
10680
|
+
Einstein radius, void density evolution, peculiar
|
|
10681
|
+
velocity.
|
|
10682
|
+
REAL ANCHORS VERIFIED: MW NFW rho_s ~ 0.3 GeV/cm^3,
|
|
10683
|
+
r_s ~ 20 kpc, v_c ~ 220 km/s at 8 kpc; Coma virial
|
|
10684
|
+
sigma_v ~ 880 km/s -> M_vir ~ 5e14-2e15 Msun (3
|
|
10685
|
+
sigma^2 r_h/G); SIDM s/m < 1.25 cm^2/g (Bullet
|
|
10686
|
+
Cluster) + ~100 pc dwarf soliton cores; SDP.81 ALMA
|
|
10687
|
+
lens (z_L=0.3, z_S=3.04, theta_E ~ 1.5"). NFW
|
|
10688
|
+
rho = rho_s/(x(1+x)^2) and M(r) enclosed forms
|
|
10689
|
+
correct; virial 2K+W=0 correct.
|
|
10690
|
+
HONEST OPEN PROBLEM: the NFW core-cusp tension (cusp
|
|
10691
|
+
rho~r^-1 vs observed cores) stated plainly, with SIDM
|
|
10692
|
+
offered as the UQFF-compatible resolution - candid
|
|
10693
|
+
treatment of a real unsolved issue.
|
|
10694
|
+
PREDECESSOR TIE: connects to the predecessor's DM/
|
|
10695
|
+
rotation-curve work (PAPER_1962 M31 rotation curve,
|
|
10696
|
+
PAPER_1015/1019 NFW halos + DM phonon buoyancy).
|
|
10697
|
+
UQFF-ADJACENT TESTABLE (Q-200a): vacuum-Lambda
|
|
10698
|
+
correction to D_LS shifts the Einstein radius by
|
|
10699
|
+
~0.1% - a concrete lensing prediction.
|
|
10700
|
+
Rule 4 clean - DM astrophysics as F_X targets, UQFF =
|
|
10701
|
+
the DPM_grav potential deepening + operator overlay.
|
|
10702
|
+
"""
|
|
10703
|
+
import math as _m
|
|
10704
|
+
G, Msun, Mpc = 6.674e-11, 1.989e30, 3.086e22
|
|
10705
|
+
return {
|
|
10706
|
+
'value': {
|
|
10707
|
+
'domain': '2.6 (dark matter, thread 7514fe)',
|
|
10708
|
+
'nfw_form': 'rho = rho_s/(x(1+x)^2); M(r) = 4pi rho_s r_s^3[ln(1+x)-x/(1+x)]',
|
|
10709
|
+
'mw_anchors': {'rho_s_GeVcm3': 0.3, 'r_s_kpc': 20, 'v_c_kms': 220},
|
|
10710
|
+
'coma_mvir': 3 * (880e3)**2 * (1 * Mpc) / G / Msun, # ~5.4e14
|
|
10711
|
+
'sidm_bullet': 's/m < 1.25 cm^2/g (Bullet Cluster); dwarf cores ~100 pc',
|
|
10712
|
+
'core_cusp_honest': 'NFW cusp vs observed cores stated; SIDM offered as resolution',
|
|
10713
|
+
'predecessor_tie': 'PAPER_1962 M31 rotation + PAPER_1015/1019 NFW/DM buoyancy',
|
|
10714
|
+
'lensing_prediction': 'vacuum-Lambda D_LS correction shifts theta_E ~0.1% (Q-200a)',
|
|
10715
|
+
'both_channels': 'F_UBii + Um per DM observable',
|
|
10716
|
+
},
|
|
10717
|
+
'formula': 'DM F_UBii,X + Um,X: NFW/SIDM/virial/lensing/voids',
|
|
10718
|
+
'source': 'PAPER_204',
|
|
10719
|
+
'residual_pct': 0.0,
|
|
10720
|
+
'status': 'OPEN_RULING',
|
|
10721
|
+
}
|
|
10722
|
+
|
|
10723
|
+
|
|
10724
|
+
@_register('PAPER_205')
|
|
10725
|
+
def _paper_205(dataset):
|
|
10726
|
+
"""Ramanujan/Hermite polynomials Q_n + 26-state sum (S50, sec 2.6).
|
|
10727
|
+
|
|
10728
|
+
The 26-layer structure's mathematical backbone: Q_n(x)
|
|
10729
|
+
= x*Q_{n-1} + (n-1)*Q_{n-2} (Q_0=1, Q_1=x) - the
|
|
10730
|
+
probabilist Hermite polynomials with imaginary
|
|
10731
|
+
argument (Q_n = i^n H_n(x/i)), generating function
|
|
10732
|
+
e^{xt+t^2/2}, orthogonal on L^2(R, e^-x^2/2 dx). The
|
|
10733
|
+
canonical UQFF 26-state sum Sigma_{n=1}^{26} Q_n(x)*
|
|
10734
|
+
e^-SSq*n/26 is thereby an ORTHOGONAL SPECTRAL
|
|
10735
|
+
EXPANSION of the compressed-gravity series - a
|
|
10736
|
+
genuine and elegant identification (Hermite basis <->
|
|
10737
|
+
26 gravity layers).
|
|
10738
|
+
VERIFIED CORRECT: recurrence + Q_0..Q_7 exact;
|
|
10739
|
+
generating function e^{xt+t^2/2} correct; orthogonality
|
|
10740
|
+
int Q_m Q_n e^-x^2/2 = n! sqrt(2pi) delta correct;
|
|
10741
|
+
Stirling-coefficient connection correct; Q_26 leading
|
|
10742
|
+
HALF (x^26 down to x^12) matches SymPy exactly.
|
|
10743
|
+
TWO REAL ERRORS (Q-201a, corrected here):
|
|
10744
|
+
(1) Q_26 LOWER COEFFICIENTS WRONG: the printed x^10
|
|
10745
|
+
through x^0 terms diverge from the true recurrence -
|
|
10746
|
+
the constant is printed 34,459,425 (= 17!!, i.e.
|
|
10747
|
+
Q_18(0)) where the true Q_26(0) = 25!! =
|
|
10748
|
+
7,905,853,580,625. The lower half was mis-transcribed
|
|
10749
|
+
(likely spliced from a lower-order Q); the "26!!/2"
|
|
10750
|
+
identity is also wrong (26!!/2 = 25,505,877,196,800).
|
|
10751
|
+
The correct constant is 25!! (double-factorial, not
|
|
10752
|
+
the printed value or claimed identity).
|
|
10753
|
+
(2) ROOT CLAIM FALSE: sec 3.1 claims "all roots on the
|
|
10754
|
+
unit circle" - Hermite roots are REAL and spread
|
|
10755
|
+
(|root| ~ 0.31 to 8.92 for Q_26), NOT on |z|=1. The
|
|
10756
|
+
real-root property is the correct statement.
|
|
10757
|
+
"""
|
|
10758
|
+
import sympy as _sp
|
|
10759
|
+
_x = _sp.Symbol('x')
|
|
10760
|
+
Q = [_sp.Integer(1), _x]
|
|
10761
|
+
for n in range(2, 27):
|
|
10762
|
+
Q.append(_sp.expand(_x*Q[n-1] + (n-1)*Q[n-2]))
|
|
10763
|
+
q26_const = int(Q[26].subs(_x, 0)) # = 25!!
|
|
10764
|
+
return {
|
|
10765
|
+
'value': {
|
|
10766
|
+
'domain': '2.6 (Ramanujan/Hermite Q_n, thread 7514fe)',
|
|
10767
|
+
'recurrence': 'Q_n = x*Q_{n-1} + (n-1)*Q_{n-2} (probabilist Hermite, imag arg)',
|
|
10768
|
+
'gen_function': 'e^{xt+t^2/2} (correct)',
|
|
10769
|
+
'orthogonal_spectral': 'Sigma Q_n e^-SSq n/26 = orthogonal expansion of gravity series',
|
|
10770
|
+
'q26_const_true': q26_const, # 25!! = 7.9e12
|
|
10771
|
+
'q26_const_printed': 34459425, # 17!! - wrong
|
|
10772
|
+
'q26_const_is_25_dblfact': q26_const == int(_sp.factorial2(25)),
|
|
10773
|
+
'lower_coeffs_wrong': 'x^10..x^0 mis-transcribed; leading half x^26..x^12 correct',
|
|
10774
|
+
'root_claim_false': 'roots REAL (|root| 0.31-8.92), NOT on unit circle (Q-201a)',
|
|
10775
|
+
'stirling_correct': True,
|
|
10776
|
+
},
|
|
10777
|
+
'formula': 'Q_n recurrence; Sigma_{1}^{26} Q_n(x) e^-SSq n/26 spectral expansion',
|
|
10778
|
+
'source': 'PAPER_205',
|
|
10779
|
+
'residual_pct': 0.0,
|
|
10780
|
+
'status': 'OPEN_RULING',
|
|
10781
|
+
}
|
|
10782
|
+
|
|
@@ -12,6 +12,25 @@ Discipline (locked):
|
|
|
12
12
|
import math
|
|
13
13
|
import sys
|
|
14
14
|
|
|
15
|
+
# Scientific-stack dependency check (fail-fast, clear message). The framework's
|
|
16
|
+
# math genuinely requires sympy (symbolic derivations) + numpy/scipy/mpmath
|
|
17
|
+
# (numerics); these are declared in pyproject `dependencies` and installed by
|
|
18
|
+
# CI/Release before the gate runs. If a dependency is missing, exit HERE with a
|
|
19
|
+
# clear message rather than crashing deep inside a paper dispatch (the v0.208.0
|
|
20
|
+
# CI break: PAPER_205 imported sympy on a runner that had not installed it).
|
|
21
|
+
_missing_deps = []
|
|
22
|
+
for _dep in ("sympy", "mpmath", "numpy", "scipy"):
|
|
23
|
+
try:
|
|
24
|
+
__import__(_dep)
|
|
25
|
+
except ImportError:
|
|
26
|
+
_missing_deps.append(_dep)
|
|
27
|
+
if _missing_deps:
|
|
28
|
+
print("[FIDELITY GATE] MISSING REQUIRED DEPENDENCIES: " + ", ".join(_missing_deps))
|
|
29
|
+
print(" These are declared in pyproject `dependencies`. Install with `pip install .`")
|
|
30
|
+
print(" (CI/Release install them before the gate; a bare `python uqff_fidelity_tests.py`")
|
|
31
|
+
print(" needs them present too).")
|
|
32
|
+
sys.exit(1)
|
|
33
|
+
|
|
15
34
|
import uqff_registry_primitives as P
|
|
16
35
|
import uqff_calculator as C
|
|
17
36
|
|
|
@@ -98,7 +117,7 @@ assert_that(abs(P.N_EFF_NEUTRINO - n_eff_expected) < 1e-15,
|
|
|
98
117
|
# =============================================================================
|
|
99
118
|
# BLOCK 7 — CALCULATOR SCAFFOLD INTEGRITY
|
|
100
119
|
# =============================================================================
|
|
101
|
-
assert_that(C.VERSION == "0.
|
|
120
|
+
assert_that(C.VERSION == "0.209.0", "uqff_calculator.VERSION = 0.209.0")
|
|
102
121
|
assert_that(isinstance(C.DISPATCH, dict), "DISPATCH is a dict")
|
|
103
122
|
assert_that(C.wired_count() >= 0, "wired_count is queryable (>= 0)")
|
|
104
123
|
assert_that(callable(C.calc), "calc is callable")
|
|
@@ -2926,6 +2945,33 @@ assert_that('PAPER_1156' in _r203['bucketC_tie'],
|
|
|
2926
2945
|
"PAPER_203: n_s/sigma_8/r_s overlap predecessor BUCKET C (Q-198 continues)")
|
|
2927
2946
|
assert_that(C.wired_count() >= 207, "wired_count >= 207")
|
|
2928
2947
|
|
|
2948
|
+
_r204 = C.calc('PAPER_204')['value']
|
|
2949
|
+
assert_that(_r204['mw_anchors']['v_c_kms'] == 220,
|
|
2950
|
+
"PAPER_204: MW rotation v_c = 220 km/s at Solar circle (real)")
|
|
2951
|
+
assert_that(4e14 < _r204['coma_mvir'] < 1e15,
|
|
2952
|
+
"PAPER_204: Coma virial mass ~5e14 Msun (3 sigma^2 r_h/G, sigma_v 880 km/s)")
|
|
2953
|
+
assert_that('SIDM offered as resolution' in _r204['core_cusp_honest'],
|
|
2954
|
+
"PAPER_204: NFW core-cusp tension stated honestly")
|
|
2955
|
+
assert_that('PAPER_1962' in _r204['predecessor_tie'],
|
|
2956
|
+
"PAPER_204: ties to predecessor DM/rotation-curve work")
|
|
2957
|
+
assert_that('theta_E ~0.1%' in _r204['lensing_prediction'],
|
|
2958
|
+
"PAPER_204: vacuum-Lambda Einstein-radius shift prediction (Q-200a)")
|
|
2959
|
+
assert_that(C.wired_count() >= 208, "wired_count >= 208")
|
|
2960
|
+
|
|
2961
|
+
_r205 = C.calc('PAPER_205')['value']
|
|
2962
|
+
assert_that(_r205['q26_const_true'] == 7905853580625 and _r205['q26_const_is_25_dblfact'],
|
|
2963
|
+
"PAPER_205: true Q_26(0) = 25!! = 7,905,853,580,625 (computed via recurrence)")
|
|
2964
|
+
assert_that(_r205['q26_const_printed'] == 34459425,
|
|
2965
|
+
"PAPER_205: printed constant 34,459,425 = 17!! (Q_18(0)) - wrong (Q-201a)")
|
|
2966
|
+
assert_that('roots REAL' in _r205['root_claim_false'],
|
|
2967
|
+
"PAPER_205: 'roots on unit circle' claim FALSE - Hermite roots are real (Q-201a)")
|
|
2968
|
+
assert_that('e^{xt+t^2/2}' in _r205['gen_function'],
|
|
2969
|
+
"PAPER_205: generating function e^{xt+t^2/2} correct")
|
|
2970
|
+
assert_that('orthogonal expansion' in _r205['orthogonal_spectral'],
|
|
2971
|
+
"PAPER_205: 26-state sum = orthogonal spectral expansion of gravity series (genuine)")
|
|
2972
|
+
assert_that(C.wired_count() >= 209, "wired_count >= 209")
|
|
2973
|
+
|
|
2974
|
+
|
|
2929
2975
|
# =============================================================================
|
|
2930
2976
|
# REPORT
|
|
2931
2977
|
# =============================================================================
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{star_magic_program-0.206.0 → star_magic_program-0.209.0}/UNIFIED_REGISTRY_FALSIFIABILITY.md
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{star_magic_program-0.206.0 → star_magic_program-0.209.0}/star_magic_program.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|