giftpy 2.0.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.
- giftpy-2.0.0/COQ/Algebra/E8.v +80 -0
- giftpy-2.0.0/COQ/Algebra/G2.v +9 -0
- giftpy-2.0.0/COQ/Certificate/AllProven.v +709 -0
- giftpy-2.0.0/COQ/Geometry/Jordan.v +6 -0
- giftpy-2.0.0/COQ/Geometry/K7.v +70 -0
- giftpy-2.0.0/COQ/Relations/BaseDecomposition.v +283 -0
- giftpy-2.0.0/COQ/Relations/Cosmology.v +78 -0
- giftpy-2.0.0/COQ/Relations/ExceptionalChain.v +226 -0
- giftpy-2.0.0/COQ/Relations/ExceptionalGroups.v +159 -0
- giftpy-2.0.0/COQ/Relations/GaugeSector.v +117 -0
- giftpy-2.0.0/COQ/Relations/GoldenRatio.v +88 -0
- giftpy-2.0.0/COQ/Relations/IrrationalSector.v +99 -0
- giftpy-2.0.0/COQ/Relations/LeptonSector.v +62 -0
- giftpy-2.0.0/COQ/Relations/MassFactorization.v +236 -0
- giftpy-2.0.0/COQ/Relations/NeutrinoSector.v +105 -0
- giftpy-2.0.0/COQ/Relations/Physical.v +57 -0
- giftpy-2.0.0/COQ/Relations/Weinberg.v +13 -0
- giftpy-2.0.0/COQ/Relations/YukawaDuality.v +208 -0
- giftpy-2.0.0/COQ/Topology/Betti.v +21 -0
- giftpy-2.0.0/LICENSE +21 -0
- giftpy-2.0.0/Lean/GIFT/Algebra.lean +99 -0
- giftpy-2.0.0/Lean/GIFT/Certificate.lean +611 -0
- giftpy-2.0.0/Lean/GIFT/Geometry.lean +57 -0
- giftpy-2.0.0/Lean/GIFT/McKay/Correspondence.lean +146 -0
- giftpy-2.0.0/Lean/GIFT/McKay/GoldenEmergence.lean +155 -0
- giftpy-2.0.0/Lean/GIFT/McKay.lean +27 -0
- giftpy-2.0.0/Lean/GIFT/Monster/Dimension.lean +127 -0
- giftpy-2.0.0/Lean/GIFT/Monster/JInvariant.lean +116 -0
- giftpy-2.0.0/Lean/GIFT/Monster.lean +27 -0
- giftpy-2.0.0/Lean/GIFT/Primes/Generators.lean +202 -0
- giftpy-2.0.0/Lean/GIFT/Primes/Heegner.lean +162 -0
- giftpy-2.0.0/Lean/GIFT/Primes/Special.lean +168 -0
- giftpy-2.0.0/Lean/GIFT/Primes/Tier1.lean +136 -0
- giftpy-2.0.0/Lean/GIFT/Primes/Tier2.lean +155 -0
- giftpy-2.0.0/Lean/GIFT/Primes.lean +58 -0
- giftpy-2.0.0/Lean/GIFT/Relations/BaseDecomposition.lean +240 -0
- giftpy-2.0.0/Lean/GIFT/Relations/Cosmology.lean +180 -0
- giftpy-2.0.0/Lean/GIFT/Relations/ExceptionalChain.lean +224 -0
- giftpy-2.0.0/Lean/GIFT/Relations/ExceptionalGroups.lean +141 -0
- giftpy-2.0.0/Lean/GIFT/Relations/GaugeSector.lean +106 -0
- giftpy-2.0.0/Lean/GIFT/Relations/GoldenRatio.lean +193 -0
- giftpy-2.0.0/Lean/GIFT/Relations/IrrationalSector.lean +81 -0
- giftpy-2.0.0/Lean/GIFT/Relations/LeptonSector.lean +59 -0
- giftpy-2.0.0/Lean/GIFT/Relations/MassFactorization.lean +209 -0
- giftpy-2.0.0/Lean/GIFT/Relations/NeutrinoSector.lean +188 -0
- giftpy-2.0.0/Lean/GIFT/Relations/YukawaDuality.lean +178 -0
- giftpy-2.0.0/Lean/GIFT/Relations.lean +54 -0
- giftpy-2.0.0/Lean/GIFT/Sequences/Fibonacci.lean +168 -0
- giftpy-2.0.0/Lean/GIFT/Sequences/Lucas.lean +163 -0
- giftpy-2.0.0/Lean/GIFT/Sequences/Recurrence.lean +149 -0
- giftpy-2.0.0/Lean/GIFT/Sequences.lean +34 -0
- giftpy-2.0.0/Lean/GIFT/Topology.lean +22 -0
- giftpy-2.0.0/Lean/GIFT.lean +24 -0
- giftpy-2.0.0/Lean/lakefile.lean +15 -0
- giftpy-2.0.0/MANIFEST.in +4 -0
- giftpy-2.0.0/PKG-INFO +98 -0
- giftpy-2.0.0/README.md +66 -0
- giftpy-2.0.0/gift_core/__init__.py +389 -0
- giftpy-2.0.0/gift_core/_version.py +1 -0
- giftpy-2.0.0/gift_core/constants.py +619 -0
- giftpy-2.0.0/gift_core/dashboard.py +586 -0
- giftpy-2.0.0/gift_core/experimental.py +371 -0
- giftpy-2.0.0/gift_core/g2/__init__.py +26 -0
- giftpy-2.0.0/gift_core/g2/constraints.py +292 -0
- giftpy-2.0.0/gift_core/g2/g2_form.py +418 -0
- giftpy-2.0.0/gift_core/g2/holonomy.py +287 -0
- giftpy-2.0.0/gift_core/g2/torsion.py +298 -0
- giftpy-2.0.0/gift_core/geometry/__init__.py +18 -0
- giftpy-2.0.0/gift_core/geometry/acyl_cy3.py +230 -0
- giftpy-2.0.0/gift_core/geometry/k3_surface.py +225 -0
- giftpy-2.0.0/gift_core/geometry/k7_metric.py +448 -0
- giftpy-2.0.0/gift_core/geometry/tcs_construction.py +370 -0
- giftpy-2.0.0/gift_core/harmonic/__init__.py +21 -0
- giftpy-2.0.0/gift_core/harmonic/betti_validation.py +211 -0
- giftpy-2.0.0/gift_core/harmonic/harmonic_forms.py +254 -0
- giftpy-2.0.0/gift_core/harmonic/hodge_laplacian.py +240 -0
- giftpy-2.0.0/gift_core/mckay/__init__.py +114 -0
- giftpy-2.0.0/gift_core/monster/__init__.py +83 -0
- giftpy-2.0.0/gift_core/monte_carlo.py +521 -0
- giftpy-2.0.0/gift_core/nn/__init__.py +34 -0
- giftpy-2.0.0/gift_core/nn/fourier_features.py +150 -0
- giftpy-2.0.0/gift_core/nn/g2_pinn.py +239 -0
- giftpy-2.0.0/gift_core/nn/loss_functions.py +252 -0
- giftpy-2.0.0/gift_core/nn/training.py +273 -0
- giftpy-2.0.0/gift_core/physics/__init__.py +21 -0
- giftpy-2.0.0/gift_core/physics/coupling_constants.py +190 -0
- giftpy-2.0.0/gift_core/physics/mass_spectrum.py +222 -0
- giftpy-2.0.0/gift_core/physics/yukawa_tensor.py +230 -0
- giftpy-2.0.0/gift_core/pipeline/__init__.py +23 -0
- giftpy-2.0.0/gift_core/pipeline/config.py +176 -0
- giftpy-2.0.0/gift_core/pipeline/full_pipeline.py +309 -0
- giftpy-2.0.0/gift_core/primes/__init__.py +181 -0
- giftpy-2.0.0/gift_core/relations.py +133 -0
- giftpy-2.0.0/gift_core/scales.py +148 -0
- giftpy-2.0.0/gift_core/sequences/__init__.py +164 -0
- giftpy-2.0.0/gift_core/topology.py +55 -0
- giftpy-2.0.0/gift_core/torch_optim.py +569 -0
- giftpy-2.0.0/gift_core/verification/__init__.py +21 -0
- giftpy-2.0.0/gift_core/verification/certificate.py +248 -0
- giftpy-2.0.0/gift_core/verification/lean_export.py +180 -0
- giftpy-2.0.0/gift_core/verification/numerical_bounds.py +210 -0
- giftpy-2.0.0/giftpy.egg-info/PKG-INFO +98 -0
- giftpy-2.0.0/giftpy.egg-info/SOURCES.txt +116 -0
- giftpy-2.0.0/giftpy.egg-info/dependency_links.txt +1 -0
- giftpy-2.0.0/giftpy.egg-info/requires.txt +6 -0
- giftpy-2.0.0/giftpy.egg-info/top_level.txt +1 -0
- giftpy-2.0.0/pyproject.toml +55 -0
- giftpy-2.0.0/setup.cfg +4 -0
- giftpy-2.0.0/tests/test_constants.py +61 -0
- giftpy-2.0.0/tests/test_k7_metric.py +210 -0
- giftpy-2.0.0/tests/test_monte_carlo.py +322 -0
- giftpy-2.0.0/tests/test_relations.py +257 -0
- giftpy-2.0.0/tests/test_topological_extension.py +228 -0
- giftpy-2.0.0/tests/test_torch_optim.py +268 -0
- giftpy-2.0.0/tests/test_v2_monster_mckay.py +170 -0
- giftpy-2.0.0/tests/test_v2_primes.py +220 -0
- giftpy-2.0.0/tests/test_v2_sequences.py +195 -0
- giftpy-2.0.0/tests/test_yukawa_duality.py +157 -0
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
(** GIFT - E8 Lie algebra formalization *)
|
|
2
|
+
|
|
3
|
+
Require Import Coq.Arith.Arith.
|
|
4
|
+
|
|
5
|
+
(** Dimension of E8 *)
|
|
6
|
+
Definition dim_E8 : nat := 248.
|
|
7
|
+
|
|
8
|
+
(** Rank of E8 *)
|
|
9
|
+
Definition rank_E8 : nat := 8.
|
|
10
|
+
|
|
11
|
+
(** Dimension of E8 x E8 *)
|
|
12
|
+
Definition dim_E8xE8 : nat := 2 * dim_E8.
|
|
13
|
+
|
|
14
|
+
Theorem E8xE8_dim_certified : dim_E8xE8 = 496.
|
|
15
|
+
Proof. reflexivity. Qed.
|
|
16
|
+
|
|
17
|
+
(** =========================================================================== *)
|
|
18
|
+
(** ADDITIONAL CONSTANTS FOR TOPOLOGICAL EXTENSION *)
|
|
19
|
+
(** =========================================================================== *)
|
|
20
|
+
|
|
21
|
+
(** Weyl factor from |W(E8)| = 2^14 × 3^5 × 5^2 × 7 *)
|
|
22
|
+
Definition Weyl_factor : nat := 5.
|
|
23
|
+
|
|
24
|
+
(** Weyl squared (pentagonal structure) *)
|
|
25
|
+
Definition Weyl_sq : nat := Weyl_factor * Weyl_factor.
|
|
26
|
+
|
|
27
|
+
Theorem Weyl_sq_certified : Weyl_sq = 25.
|
|
28
|
+
Proof. reflexivity. Qed.
|
|
29
|
+
|
|
30
|
+
(** Bulk dimension D = 11 (M-theory) *)
|
|
31
|
+
Definition D_bulk : nat := 11.
|
|
32
|
+
|
|
33
|
+
(** Standard Model gauge group dimensions *)
|
|
34
|
+
Definition dim_SU3 : nat := 8. (* SU(3) color *)
|
|
35
|
+
Definition dim_SU2 : nat := 3. (* SU(2) weak isospin *)
|
|
36
|
+
Definition dim_U1 : nat := 1. (* U(1) hypercharge *)
|
|
37
|
+
|
|
38
|
+
(** Total SM gauge dimension *)
|
|
39
|
+
Definition dim_SM_gauge : nat := dim_SU3 + dim_SU2 + dim_U1.
|
|
40
|
+
|
|
41
|
+
Theorem SM_gauge_certified : dim_SM_gauge = 12.
|
|
42
|
+
Proof. reflexivity. Qed.
|
|
43
|
+
|
|
44
|
+
(** =========================================================================== *)
|
|
45
|
+
(** EXCEPTIONAL GROUP E7 (v1.7.0) *)
|
|
46
|
+
(** =========================================================================== *)
|
|
47
|
+
|
|
48
|
+
(** Dimension of the exceptional Lie group E7 *)
|
|
49
|
+
Definition dim_E7 : nat := 133.
|
|
50
|
+
|
|
51
|
+
(** Fundamental representation of E7 (56-dimensional) *)
|
|
52
|
+
Definition dim_fund_E7 : nat := 56.
|
|
53
|
+
|
|
54
|
+
Theorem dim_E7_certified : dim_E7 = 133.
|
|
55
|
+
Proof. reflexivity. Qed.
|
|
56
|
+
|
|
57
|
+
Theorem dim_fund_E7_certified : dim_fund_E7 = 56.
|
|
58
|
+
Proof. reflexivity. Qed.
|
|
59
|
+
|
|
60
|
+
(** =========================================================================== *)
|
|
61
|
+
(** PRIME SEQUENCE (for exceptional chain) *)
|
|
62
|
+
(** =========================================================================== *)
|
|
63
|
+
|
|
64
|
+
(** The 6th prime number (for E6) *)
|
|
65
|
+
Definition prime_6 : nat := 13.
|
|
66
|
+
|
|
67
|
+
(** The 8th prime number (for E7) *)
|
|
68
|
+
Definition prime_8 : nat := 19.
|
|
69
|
+
|
|
70
|
+
(** The 11th prime number (for E8) *)
|
|
71
|
+
Definition prime_11 : nat := 31.
|
|
72
|
+
|
|
73
|
+
Theorem prime_6_certified : prime_6 = 13.
|
|
74
|
+
Proof. reflexivity. Qed.
|
|
75
|
+
|
|
76
|
+
Theorem prime_8_certified : prime_8 = 19.
|
|
77
|
+
Proof. reflexivity. Qed.
|
|
78
|
+
|
|
79
|
+
Theorem prime_11_certified : prime_11 = 31.
|
|
80
|
+
Proof. reflexivity. Qed.
|