giftpy 3.1.0__tar.gz → 3.3.6__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.

Potentially problematic release.


This version of giftpy might be problematic. Click here for more details.

Files changed (220) hide show
  1. {giftpy-3.1.0 → giftpy-3.3.6}/COQ/Algebra/E8.v +1 -1
  2. {giftpy-3.1.0 → giftpy-3.3.6}/COQ/Certificate/AllProven.v +22 -22
  3. {giftpy-3.1.0 → giftpy-3.3.6}/Lean/GIFT/Algebraic/BettiNumbers.lean +3 -1
  4. {giftpy-3.1.0 → giftpy-3.3.6}/Lean/GIFT/Algebraic/CayleyDickson.lean +3 -2
  5. {giftpy-3.1.0 → giftpy-3.3.6}/Lean/GIFT/Algebraic/GIFTConstants.lean +6 -4
  6. {giftpy-3.1.0 → giftpy-3.3.6}/Lean/GIFT/Algebraic/SO16Decomposition.lean +9 -9
  7. {giftpy-3.1.0 → giftpy-3.3.6}/Lean/GIFT/Certificate.lean +604 -56
  8. {giftpy-3.1.0 → giftpy-3.3.6}/Lean/GIFT/Core.lean +63 -0
  9. {giftpy-3.1.0 → giftpy-3.3.6}/Lean/GIFT/DifferentialForms.lean +4 -5
  10. giftpy-3.3.6/Lean/GIFT/Foundations/Analysis/AnalyticalFoundations.lean +71 -0
  11. giftpy-3.3.6/Lean/GIFT/Foundations/Analysis/E8Lattice.lean +759 -0
  12. giftpy-3.3.6/Lean/GIFT/Foundations/Analysis/Elliptic/Basic.lean +124 -0
  13. {giftpy-3.1.0/Lean/GIFT/Foundations/V5 → giftpy-3.3.6/Lean/GIFT/Foundations/Analysis}/ExteriorAlgebra.lean +3 -3
  14. giftpy-3.3.6/Lean/GIFT/Foundations/Analysis/G2Forms/All.lean +75 -0
  15. giftpy-3.3.6/Lean/GIFT/Foundations/Analysis/G2Forms/DifferentialForms.lean +176 -0
  16. giftpy-3.3.6/Lean/GIFT/Foundations/Analysis/G2Forms/G2FormsBridge.lean +251 -0
  17. giftpy-3.3.6/Lean/GIFT/Foundations/Analysis/G2Forms/G2Structure.lean +156 -0
  18. giftpy-3.3.6/Lean/GIFT/Foundations/Analysis/G2Forms/HodgeStar.lean +143 -0
  19. giftpy-3.3.6/Lean/GIFT/Foundations/Analysis/G2Forms/Test.lean +204 -0
  20. {giftpy-3.1.0/Lean/GIFT/Foundations/V5 → giftpy-3.3.6/Lean/GIFT/Foundations/Analysis}/G2TensorForm.lean +38 -20
  21. {giftpy-3.1.0/Lean/GIFT/Foundations/V5 → giftpy-3.3.6/Lean/GIFT/Foundations/Analysis}/HarmonicForms.lean +3 -3
  22. {giftpy-3.1.0/Lean/GIFT/Foundations/V5 → giftpy-3.3.6/Lean/GIFT/Foundations/Analysis}/HodgeTheory.lean +3 -3
  23. giftpy-3.3.6/Lean/GIFT/Foundations/Analysis/IFT/Basic.lean +109 -0
  24. {giftpy-3.1.0/Lean/GIFT/Foundations/V5 → giftpy-3.3.6/Lean/GIFT/Foundations/Analysis}/InnerProductSpace.lean +79 -2
  25. giftpy-3.3.6/Lean/GIFT/Foundations/Analysis/JoyceAnalytic.lean +220 -0
  26. giftpy-3.3.6/Lean/GIFT/Foundations/Analysis/Sobolev/Basic.lean +99 -0
  27. {giftpy-3.1.0/Lean/GIFT/Foundations/V5 → giftpy-3.3.6/Lean/GIFT/Foundations/Analysis}/WedgeProduct.lean +13 -22
  28. giftpy-3.3.6/Lean/GIFT/Foundations/Analysis.lean +63 -0
  29. giftpy-3.3.6/Lean/GIFT/Foundations/AnalyticalMetric.lean +327 -0
  30. giftpy-3.3.6/Lean/GIFT/Foundations/E8Lattice.lean +631 -0
  31. giftpy-3.3.6/Lean/GIFT/Foundations/G2CrossProduct.lean +639 -0
  32. {giftpy-3.1.0 → giftpy-3.3.6}/Lean/GIFT/Foundations/G2Holonomy.lean +10 -7
  33. giftpy-3.3.6/Lean/GIFT/Foundations/GoldenRatioPowers.lean +309 -0
  34. giftpy-3.3.6/Lean/GIFT/Foundations/NumericalBounds.lean +623 -0
  35. giftpy-3.3.6/Lean/GIFT/Foundations/OctonionBridge.lean +342 -0
  36. {giftpy-3.1.0 → giftpy-3.3.6}/Lean/GIFT/Foundations/RationalConstants.lean +6 -5
  37. giftpy-3.3.6/Lean/GIFT/Foundations/TCSConstruction.lean +208 -0
  38. {giftpy-3.1.0 → giftpy-3.3.6}/Lean/GIFT/Foundations.lean +60 -13
  39. giftpy-3.3.6/Lean/GIFT/Geometry/DifferentialFormsR7.lean +245 -0
  40. giftpy-3.3.6/Lean/GIFT/Geometry/Exterior.lean +281 -0
  41. giftpy-3.3.6/Lean/GIFT/Geometry/HodgeStarCompute.lean +337 -0
  42. giftpy-3.3.6/Lean/GIFT/Geometry/HodgeStarR7.lean +165 -0
  43. giftpy-3.3.6/Lean/GIFT/Geometry.lean +87 -0
  44. giftpy-3.3.6/Lean/GIFT/Hierarchy/AbsoluteMasses.lean +209 -0
  45. giftpy-3.3.6/Lean/GIFT/Hierarchy/DimensionalGap.lean +256 -0
  46. giftpy-3.3.6/Lean/GIFT/Hierarchy/E6Cascade.lean +223 -0
  47. giftpy-3.3.6/Lean/GIFT/Hierarchy/VacuumStructure.lean +173 -0
  48. giftpy-3.3.6/Lean/GIFT/Hierarchy.lean +145 -0
  49. {giftpy-3.1.0 → giftpy-3.3.6}/Lean/GIFT/ImplicitFunction.lean +2 -4
  50. {giftpy-3.1.0 → giftpy-3.3.6}/Lean/GIFT/IntervalArithmetic.lean +2 -3
  51. {giftpy-3.1.0 → giftpy-3.3.6}/Lean/GIFT/Joyce.lean +2 -4
  52. {giftpy-3.1.0 → giftpy-3.3.6}/Lean/GIFT/McKay/Correspondence.lean +2 -4
  53. {giftpy-3.1.0 → giftpy-3.3.6}/Lean/GIFT/McKay/GoldenEmergence.lean +2 -4
  54. {giftpy-3.1.0/Lean/GIFT/Monster → giftpy-3.3.6/Lean/GIFT/Moonshine}/JInvariant.lean +6 -8
  55. giftpy-3.1.0/Lean/GIFT/Monster/Dimension.lean → giftpy-3.3.6/Lean/GIFT/Moonshine/MonsterDimension.lean +4 -6
  56. giftpy-3.3.6/Lean/GIFT/Moonshine.lean +27 -0
  57. giftpy-3.3.6/Lean/GIFT/Observables/BosonMasses.lean +104 -0
  58. giftpy-3.3.6/Lean/GIFT/Observables/CKM.lean +160 -0
  59. giftpy-3.3.6/Lean/GIFT/Observables/Cosmology.lean +99 -0
  60. giftpy-3.3.6/Lean/GIFT/Observables/PMNS.lean +63 -0
  61. giftpy-3.3.6/Lean/GIFT/Observables/QuarkMasses.lean +72 -0
  62. giftpy-3.3.6/Lean/GIFT/Observables/WeakMixingAngle.lean +64 -0
  63. giftpy-3.3.6/Lean/GIFT/Observables.lean +160 -0
  64. giftpy-3.1.0/Lean/GIFT/Primes/Tier2.lean → giftpy-3.3.6/Lean/GIFT/Primes/DerivedPrimes.lean +13 -15
  65. giftpy-3.1.0/Lean/GIFT/Primes/Tier1.lean → giftpy-3.3.6/Lean/GIFT/Primes/DirectPrimes.lean +18 -20
  66. {giftpy-3.1.0 → giftpy-3.3.6}/Lean/GIFT/Primes/Generators.lean +2 -4
  67. {giftpy-3.1.0 → giftpy-3.3.6}/Lean/GIFT/Primes/Heegner.lean +11 -13
  68. {giftpy-3.1.0 → giftpy-3.3.6}/Lean/GIFT/Primes/Special.lean +2 -4
  69. {giftpy-3.1.0 → giftpy-3.3.6}/Lean/GIFT/Primes.lean +7 -7
  70. giftpy-3.3.6/Lean/GIFT/Relations/FanoSelectionPrinciple.lean +279 -0
  71. giftpy-3.3.6/Lean/GIFT/Relations/OverDetermination.lean +302 -0
  72. giftpy-3.3.6/Lean/GIFT/Relations/SectorClassification.lean +287 -0
  73. {giftpy-3.1.0 → giftpy-3.3.6}/Lean/GIFT/Relations/Structural.lean +97 -1
  74. giftpy-3.3.6/Lean/GIFT/Relations/TauBounds.lean +171 -0
  75. giftpy-3.3.6/Lean/GIFT/Relations/V33Additions.lean +229 -0
  76. {giftpy-3.1.0 → giftpy-3.3.6}/Lean/GIFT/Relations.lean +2 -2
  77. {giftpy-3.1.0 → giftpy-3.3.6}/Lean/GIFT/Sequences/Fibonacci.lean +2 -4
  78. {giftpy-3.1.0 → giftpy-3.3.6}/Lean/GIFT/Sequences/Lucas.lean +2 -4
  79. {giftpy-3.1.0 → giftpy-3.3.6}/Lean/GIFT/Sequences/Recurrence.lean +2 -4
  80. {giftpy-3.1.0 → giftpy-3.3.6}/Lean/GIFT/Sobolev.lean +2 -4
  81. {giftpy-3.1.0 → giftpy-3.3.6}/Lean/GIFT.lean +14 -6
  82. giftpy-3.3.6/PKG-INFO +97 -0
  83. giftpy-3.3.6/README.md +65 -0
  84. giftpy-3.3.6/gift_core/__init__.py +300 -0
  85. giftpy-3.3.6/gift_core/_version.py +1 -0
  86. giftpy-3.3.6/gift_core/constants/__init__.py +194 -0
  87. giftpy-3.3.6/gift_core/constants/algebra.py +120 -0
  88. giftpy-3.3.6/gift_core/constants/cosmology.py +75 -0
  89. giftpy-3.3.6/gift_core/constants/physics.py +186 -0
  90. giftpy-3.3.6/gift_core/constants/structural.py +102 -0
  91. giftpy-3.3.6/gift_core/constants/topology.py +71 -0
  92. {giftpy-3.1.0 → giftpy-3.3.6}/gift_core/constants.py +1 -0
  93. {giftpy-3.1.0 → giftpy-3.3.6}/gift_core/experimental.py +16 -0
  94. giftpy-3.3.6/gift_core/fano.py +282 -0
  95. {giftpy-3.1.0 → giftpy-3.3.6}/gift_core/monte_carlo.py +7 -0
  96. giftpy-3.3.6/gift_core/nn/__init__.py +79 -0
  97. giftpy-3.3.6/gift_core/nn/gift_native_pinn.py +1109 -0
  98. giftpy-3.3.6/gift_core/numerical_observations.py +281 -0
  99. {giftpy-3.1.0 → giftpy-3.3.6}/gift_core/relations.py +2 -0
  100. giftpy-3.3.6/gift_core/roots.py +289 -0
  101. {giftpy-3.1.0 → giftpy-3.3.6}/gift_core/scales.py +7 -0
  102. {giftpy-3.1.0 → giftpy-3.3.6}/gift_core/topology.py +15 -2
  103. {giftpy-3.1.0 → giftpy-3.3.6}/gift_core/torch_optim.py +8 -0
  104. giftpy-3.3.6/gift_core/verify.py +297 -0
  105. giftpy-3.3.6/gift_core/visualize.py +412 -0
  106. giftpy-3.3.6/giftpy.egg-info/PKG-INFO +97 -0
  107. {giftpy-3.1.0 → giftpy-3.3.6}/giftpy.egg-info/SOURCES.txt +62 -37
  108. {giftpy-3.1.0 → giftpy-3.3.6}/tests/test_v2_primes.py +2 -2
  109. giftpy-3.3.6/tests/test_v32_features.py +185 -0
  110. giftpy-3.1.0/Lean/GIFT/Algebra.lean +0 -59
  111. giftpy-3.1.0/Lean/GIFT/Foundations/E8Lattice.lean +0 -342
  112. giftpy-3.1.0/Lean/GIFT/Foundations/G2CrossProduct.lean +0 -297
  113. giftpy-3.1.0/Lean/GIFT/Foundations/TCSConstruction.lean +0 -156
  114. giftpy-3.1.0/Lean/GIFT/Foundations/V5/E8Lattice.lean +0 -445
  115. giftpy-3.1.0/Lean/GIFT/Foundations/V5/JoyceAnalytic.lean +0 -168
  116. giftpy-3.1.0/Lean/GIFT/Geometry.lean +0 -65
  117. giftpy-3.1.0/Lean/GIFT/Monster.lean +0 -27
  118. giftpy-3.1.0/Lean/GIFT/Topology.lean +0 -50
  119. giftpy-3.1.0/Lean/lakefile.lean +0 -15
  120. giftpy-3.1.0/PKG-INFO +0 -131
  121. giftpy-3.1.0/README.md +0 -99
  122. giftpy-3.1.0/gift_core/__init__.py +0 -405
  123. giftpy-3.1.0/gift_core/_version.py +0 -1
  124. giftpy-3.1.0/gift_core/g2/__init__.py +0 -26
  125. giftpy-3.1.0/gift_core/g2/constraints.py +0 -292
  126. giftpy-3.1.0/gift_core/g2/g2_form.py +0 -418
  127. giftpy-3.1.0/gift_core/g2/holonomy.py +0 -287
  128. giftpy-3.1.0/gift_core/g2/torsion.py +0 -298
  129. giftpy-3.1.0/gift_core/geometry/__init__.py +0 -18
  130. giftpy-3.1.0/gift_core/geometry/acyl_cy3.py +0 -230
  131. giftpy-3.1.0/gift_core/geometry/k3_surface.py +0 -225
  132. giftpy-3.1.0/gift_core/geometry/k7_metric.py +0 -448
  133. giftpy-3.1.0/gift_core/geometry/tcs_construction.py +0 -370
  134. giftpy-3.1.0/gift_core/harmonic/__init__.py +0 -21
  135. giftpy-3.1.0/gift_core/harmonic/betti_validation.py +0 -211
  136. giftpy-3.1.0/gift_core/harmonic/harmonic_forms.py +0 -254
  137. giftpy-3.1.0/gift_core/harmonic/hodge_laplacian.py +0 -240
  138. giftpy-3.1.0/gift_core/nn/__init__.py +0 -34
  139. giftpy-3.1.0/gift_core/pipeline/__init__.py +0 -23
  140. giftpy-3.1.0/gift_core/pipeline/config.py +0 -176
  141. giftpy-3.1.0/gift_core/pipeline/full_pipeline.py +0 -309
  142. giftpy-3.1.0/gift_core/verification/__init__.py +0 -21
  143. giftpy-3.1.0/gift_core/verification/certificate.py +0 -248
  144. giftpy-3.1.0/gift_core/verification/lean_export.py +0 -180
  145. giftpy-3.1.0/gift_core/verification/numerical_bounds.py +0 -210
  146. giftpy-3.1.0/giftpy.egg-info/PKG-INFO +0 -131
  147. {giftpy-3.1.0 → giftpy-3.3.6}/COQ/Algebra/G2.v +0 -0
  148. {giftpy-3.1.0 → giftpy-3.3.6}/COQ/Geometry/Jordan.v +0 -0
  149. {giftpy-3.1.0 → giftpy-3.3.6}/COQ/Geometry/K7.v +0 -0
  150. {giftpy-3.1.0 → giftpy-3.3.6}/COQ/Relations/BaseDecomposition.v +0 -0
  151. {giftpy-3.1.0 → giftpy-3.3.6}/COQ/Relations/Cosmology.v +0 -0
  152. {giftpy-3.1.0 → giftpy-3.3.6}/COQ/Relations/ExceptionalChain.v +0 -0
  153. {giftpy-3.1.0 → giftpy-3.3.6}/COQ/Relations/ExceptionalGroups.v +0 -0
  154. {giftpy-3.1.0 → giftpy-3.3.6}/COQ/Relations/GaugeSector.v +0 -0
  155. {giftpy-3.1.0 → giftpy-3.3.6}/COQ/Relations/GoldenRatio.v +0 -0
  156. {giftpy-3.1.0 → giftpy-3.3.6}/COQ/Relations/IrrationalSector.v +0 -0
  157. {giftpy-3.1.0 → giftpy-3.3.6}/COQ/Relations/LeptonSector.v +0 -0
  158. {giftpy-3.1.0 → giftpy-3.3.6}/COQ/Relations/MassFactorization.v +0 -0
  159. {giftpy-3.1.0 → giftpy-3.3.6}/COQ/Relations/NeutrinoSector.v +0 -0
  160. {giftpy-3.1.0 → giftpy-3.3.6}/COQ/Relations/Physical.v +0 -0
  161. {giftpy-3.1.0 → giftpy-3.3.6}/COQ/Relations/Weinberg.v +0 -0
  162. {giftpy-3.1.0 → giftpy-3.3.6}/COQ/Relations/YukawaDuality.v +0 -0
  163. {giftpy-3.1.0 → giftpy-3.3.6}/COQ/Topology/Betti.v +0 -0
  164. {giftpy-3.1.0 → giftpy-3.3.6}/LICENSE +0 -0
  165. {giftpy-3.1.0 → giftpy-3.3.6}/Lean/GIFT/Algebraic/G2.lean +0 -0
  166. {giftpy-3.1.0 → giftpy-3.3.6}/Lean/GIFT/Algebraic/GeometricSaturation.lean +0 -0
  167. {giftpy-3.1.0 → giftpy-3.3.6}/Lean/GIFT/Algebraic/Octonions.lean +0 -0
  168. {giftpy-3.1.0 → giftpy-3.3.6}/Lean/GIFT/Algebraic/Quaternions.lean +0 -0
  169. {giftpy-3.1.0 → giftpy-3.3.6}/Lean/GIFT/Algebraic.lean +0 -0
  170. {giftpy-3.1.0 → giftpy-3.3.6}/Lean/GIFT/Foundations/E8Mathlib.lean +0 -0
  171. {giftpy-3.1.0 → giftpy-3.3.6}/Lean/GIFT/Foundations/GoldenRatio.lean +0 -0
  172. {giftpy-3.1.0 → giftpy-3.3.6}/Lean/GIFT/Foundations/GraphTheory.lean +0 -0
  173. {giftpy-3.1.0 → giftpy-3.3.6}/Lean/GIFT/Foundations/RootSystems.lean +0 -0
  174. {giftpy-3.1.0 → giftpy-3.3.6}/Lean/GIFT/McKay.lean +0 -0
  175. {giftpy-3.1.0 → giftpy-3.3.6}/Lean/GIFT/Relations/BaseDecomposition.lean +0 -0
  176. {giftpy-3.1.0 → giftpy-3.3.6}/Lean/GIFT/Relations/Cosmology.lean +0 -0
  177. {giftpy-3.1.0 → giftpy-3.3.6}/Lean/GIFT/Relations/ExceptionalChain.lean +0 -0
  178. {giftpy-3.1.0 → giftpy-3.3.6}/Lean/GIFT/Relations/ExceptionalGroups.lean +0 -0
  179. {giftpy-3.1.0 → giftpy-3.3.6}/Lean/GIFT/Relations/GaugeSector.lean +0 -0
  180. {giftpy-3.1.0 → giftpy-3.3.6}/Lean/GIFT/Relations/GoldenRatio.lean +0 -0
  181. {giftpy-3.1.0 → giftpy-3.3.6}/Lean/GIFT/Relations/IrrationalSector.lean +0 -0
  182. {giftpy-3.1.0 → giftpy-3.3.6}/Lean/GIFT/Relations/LandauerDarkEnergy.lean +0 -0
  183. {giftpy-3.1.0 → giftpy-3.3.6}/Lean/GIFT/Relations/LeptonSector.lean +0 -0
  184. {giftpy-3.1.0 → giftpy-3.3.6}/Lean/GIFT/Relations/MassFactorization.lean +0 -0
  185. {giftpy-3.1.0 → giftpy-3.3.6}/Lean/GIFT/Relations/NeutrinoSector.lean +0 -0
  186. {giftpy-3.1.0 → giftpy-3.3.6}/Lean/GIFT/Relations/QuarkSector.lean +0 -0
  187. {giftpy-3.1.0 → giftpy-3.3.6}/Lean/GIFT/Relations/SO16Relations.lean +0 -0
  188. {giftpy-3.1.0 → giftpy-3.3.6}/Lean/GIFT/Relations/YukawaDuality.lean +0 -0
  189. {giftpy-3.1.0 → giftpy-3.3.6}/Lean/GIFT/Sequences.lean +0 -0
  190. {giftpy-3.1.0 → giftpy-3.3.6}/MANIFEST.in +0 -0
  191. {giftpy-3.1.0 → giftpy-3.3.6}/gift_core/analysis/__init__.py +0 -0
  192. {giftpy-3.1.0 → giftpy-3.3.6}/gift_core/analysis/intervals.py +0 -0
  193. {giftpy-3.1.0 → giftpy-3.3.6}/gift_core/analysis/joyce_certificate.py +0 -0
  194. {giftpy-3.1.0 → giftpy-3.3.6}/gift_core/dashboard.py +0 -0
  195. {giftpy-3.1.0 → giftpy-3.3.6}/gift_core/mckay/__init__.py +0 -0
  196. {giftpy-3.1.0 → giftpy-3.3.6}/gift_core/monster/__init__.py +0 -0
  197. {giftpy-3.1.0 → giftpy-3.3.6}/gift_core/nn/fourier_features.py +0 -0
  198. {giftpy-3.1.0 → giftpy-3.3.6}/gift_core/nn/g2_pinn.py +0 -0
  199. {giftpy-3.1.0 → giftpy-3.3.6}/gift_core/nn/loss_functions.py +0 -0
  200. {giftpy-3.1.0 → giftpy-3.3.6}/gift_core/nn/training.py +0 -0
  201. {giftpy-3.1.0 → giftpy-3.3.6}/gift_core/physics/__init__.py +0 -0
  202. {giftpy-3.1.0 → giftpy-3.3.6}/gift_core/physics/coupling_constants.py +0 -0
  203. {giftpy-3.1.0 → giftpy-3.3.6}/gift_core/physics/mass_spectrum.py +0 -0
  204. {giftpy-3.1.0 → giftpy-3.3.6}/gift_core/physics/yukawa_tensor.py +0 -0
  205. {giftpy-3.1.0 → giftpy-3.3.6}/gift_core/primes/__init__.py +0 -0
  206. {giftpy-3.1.0 → giftpy-3.3.6}/gift_core/sequences/__init__.py +0 -0
  207. {giftpy-3.1.0 → giftpy-3.3.6}/giftpy.egg-info/dependency_links.txt +0 -0
  208. {giftpy-3.1.0 → giftpy-3.3.6}/giftpy.egg-info/requires.txt +0 -0
  209. {giftpy-3.1.0 → giftpy-3.3.6}/giftpy.egg-info/top_level.txt +0 -0
  210. {giftpy-3.1.0 → giftpy-3.3.6}/pyproject.toml +0 -0
  211. {giftpy-3.1.0 → giftpy-3.3.6}/setup.cfg +0 -0
  212. {giftpy-3.1.0 → giftpy-3.3.6}/tests/test_constants.py +0 -0
  213. {giftpy-3.1.0 → giftpy-3.3.6}/tests/test_k7_metric.py +0 -0
  214. {giftpy-3.1.0 → giftpy-3.3.6}/tests/test_monte_carlo.py +0 -0
  215. {giftpy-3.1.0 → giftpy-3.3.6}/tests/test_relations.py +0 -0
  216. {giftpy-3.1.0 → giftpy-3.3.6}/tests/test_topological_extension.py +0 -0
  217. {giftpy-3.1.0 → giftpy-3.3.6}/tests/test_torch_optim.py +0 -0
  218. {giftpy-3.1.0 → giftpy-3.3.6}/tests/test_v2_monster_mckay.py +0 -0
  219. {giftpy-3.1.0 → giftpy-3.3.6}/tests/test_v2_sequences.py +0 -0
  220. {giftpy-3.1.0 → giftpy-3.3.6}/tests/test_yukawa_duality.py +0 -0
@@ -18,7 +18,7 @@ Proof. reflexivity. Qed.
18
18
  (** ADDITIONAL CONSTANTS FOR TOPOLOGICAL EXTENSION *)
19
19
  (** =========================================================================== *)
20
20
 
21
- (** Weyl factor from |W(E8)| = 2^14 × 3^5 × 5^2 × 7 *)
21
+ (** Weyl factor from |W(E8)| = 2^14 * 3^5 * 5^2 * 7 *)
22
22
  Definition Weyl_factor : nat := 5.
23
23
 
24
24
  (** Weyl squared (pentagonal structure) *)
@@ -60,29 +60,29 @@ Qed.
60
60
 
61
61
  (** All 12 topological extension relations are fully proven *)
62
62
  Theorem all_12_extension_relations_certified :
63
- (* 14. α_s denominator *)
63
+ (* 14. alpha_s denominator *)
64
64
  dim_G2 - p2 = 12 /\
65
- (* 15. γ_GIFT numerator and denominator *)
65
+ (* 15. gamma_GIFT numerator and denominator *)
66
66
  gamma_GIFT_num = 511 /\ gamma_GIFT_den = 884 /\
67
- (* 16. δ pentagonal (Weyl²) *)
67
+ (* 16. delta pentagonal (Weyl^2) *)
68
68
  Weyl_sq = 25 /\
69
- (* 17. θ₂₃ fraction *)
69
+ (* 17. theta_23 fraction *)
70
70
  theta_23_num = 85 /\ theta_23_den = 99 /\
71
- (* 18. θ₁₃ denominator *)
71
+ (* 18. theta_13 denominator *)
72
72
  b2 = 21 /\
73
- (* 19. α_s² structure *)
73
+ (* 19. alpha_s^2 structure *)
74
74
  (dim_G2 - p2) * (dim_G2 - p2) = 144 /\
75
- (* 20. λ_H² structure *)
75
+ (* 20. lambda_H^2 structure *)
76
76
  lambda_H_sq_num = 17 /\ lambda_H_sq_den = 1024 /\
77
- (* 21. θ₁₂ structure (δ/γ components) *)
77
+ (* 21. theta_12 structure (delta/gamma components) *)
78
78
  Weyl_sq * gamma_GIFT_num = 12775 /\
79
- (* 22. m_μ/m_e base *)
79
+ (* 22. m_mu/m_e base *)
80
80
  m_mu_m_e_base = 27 /\
81
81
  (* 23. n_s indices *)
82
82
  D_bulk = 11 /\ Weyl_factor = 5 /\
83
- (* 24. Ω_DE fraction *)
83
+ (* 24. Omega_DE fraction *)
84
84
  Omega_DE_num = 98 /\ Omega_DE_den = 99 /\
85
- (* 25. α⁻¹ components *)
85
+ (* 25. alpha^-1 components *)
86
86
  alpha_inv_algebraic = 128 /\ alpha_inv_bulk = 9.
87
87
  Proof.
88
88
  repeat split; reflexivity.
@@ -120,29 +120,29 @@ Theorem all_25_relations_certified :
120
120
  (* 12-13. tau numerator and denominator *)
121
121
  tau_num = 10416 /\ tau_den = 2673 /\
122
122
  (* ===== Extension 12 ===== *)
123
- (* 14. α_s denominator *)
123
+ (* 14. alpha_s denominator *)
124
124
  dim_G2 - p2 = 12 /\
125
- (* 15. γ_GIFT *)
125
+ (* 15. gamma_GIFT *)
126
126
  gamma_GIFT_num = 511 /\ gamma_GIFT_den = 884 /\
127
- (* 16. δ pentagonal *)
127
+ (* 16. delta pentagonal *)
128
128
  Weyl_sq = 25 /\
129
- (* 17. θ₂₃ *)
129
+ (* 17. theta_23 *)
130
130
  theta_23_num = 85 /\ theta_23_den = 99 /\
131
- (* 18. θ₁₃ *)
131
+ (* 18. theta_13 *)
132
132
  b2 = 21 /\
133
- (* 19. α_s² *)
133
+ (* 19. alpha_s^2 *)
134
134
  (dim_G2 - p2) * (dim_G2 - p2) = 144 /\
135
- (* 20. λ_H² *)
135
+ (* 20. lambda_H^2 *)
136
136
  lambda_H_sq_num = 17 /\ lambda_H_sq_den = 1024 /\
137
- (* 21. θ₁₂ structure *)
137
+ (* 21. theta_12 structure *)
138
138
  Weyl_sq * gamma_GIFT_num = 12775 /\
139
- (* 22. m_μ/m_e base *)
139
+ (* 22. m_mu/m_e base *)
140
140
  m_mu_m_e_base = 27 /\
141
141
  (* 23. n_s indices *)
142
142
  D_bulk = 11 /\ Weyl_factor = 5 /\
143
- (* 24. Ω_DE *)
143
+ (* 24. Omega_DE *)
144
144
  Omega_DE_num = 98 /\ Omega_DE_den = 99 /\
145
- (* 25. α⁻¹ *)
145
+ (* 25. alpha^-1 *)
146
146
  alpha_inv_algebraic = 128 /\ alpha_inv_bulk = 9.
147
147
  Proof.
148
148
  repeat split; reflexivity.
@@ -93,7 +93,9 @@ theorem b3_eq : b3 = 77 := rfl
93
93
  /-- b₃ from E₇ representation -/
94
94
  theorem b3_from_E7 : b3 = b2 + fund_E7 := rfl
95
95
 
96
- /-- The "3" in 3×b₂ comes from N_gen (number of generations) -/
96
+ /-- The "3" in 3×b₂ comes from N_gen (number of generations).
97
+ Note: Canonical source is GIFT.Core.N_gen. Duplicated here because
98
+ Core imports this module (avoiding circular dependency). -/
97
99
  def N_gen : ℕ := 3
98
100
 
99
101
  theorem b3_with_Ngen : b3 = N_gen * b2 + dim_G2 := rfl
@@ -20,6 +20,7 @@ import Mathlib.Data.Nat.Choose.Basic
20
20
  import Mathlib.Algebra.Order.Ring.Nat
21
21
  import GIFT.Algebraic.Quaternions
22
22
  import GIFT.Algebraic.Octonions
23
+ import GIFT.Algebraic.G2
23
24
 
24
25
  namespace GIFT.Algebraic.CayleyDickson
25
26
 
@@ -173,8 +174,8 @@ Dimension of Aut:
173
174
  /-- Dimension of SO(3) = Aut(ℍ) -/
174
175
  def dim_SO3 : ℕ := 3
175
176
 
176
- /-- Dimension of G₂ = Aut(𝕆) -/
177
- def dim_G2 : ℕ := 14
177
+ /-- Dimension of G₂ = Aut(𝕆) (from canonical source: Algebraic.G2) -/
178
+ abbrev dim_G2 : ℕ := G2.dim_G2
178
179
 
179
180
  /-- Key relation: dim(G₂) = 2 × |Im(𝕆)| -/
180
181
  theorem G2_from_imaginary : dim_G2 = 2 * Octonions.imaginary_count := rfl
@@ -102,10 +102,12 @@ Multiple derivations:
102
102
  3. (b₃ - dim(G₂)) / b₂ = 63/21 = 3
103
103
  -/
104
104
 
105
- /-- Number of generations -/
105
+ /-- Number of generations.
106
+ Note: Canonical source is GIFT.Core.N_gen. Duplicated here because
107
+ this module is at the same level as Core (avoiding circular dependency). -/
106
108
  def N_gen : ℕ := 3
107
109
 
108
- /-- rank(E₈) -/
110
+ /-- rank(E₈) (from canonical: 8, defined inline to avoid circular import with Core) -/
109
111
  def rank_E8 : ℕ := 8
110
112
 
111
113
  /-- N_gen from E₈ × E₇ structure: 8 × 21 / 56 = 3 -/
@@ -161,8 +163,8 @@ Using rank(E₈)=8, H*=99, dim(G₂)=14, dim(E₈)=248:
161
163
  γ = (16 + 495) / (140 + 744) = 511 / 884
162
164
  -/
163
165
 
164
- /-- dim(E₈) -/
165
- def dim_E8 : ℕ := 248
166
+ /-- dim(E₈) (from canonical source: Algebraic.G2) -/
167
+ abbrev dim_E8 : ℕ := G2.dim_E8
166
168
 
167
169
  /-- γ_GIFT numerator: 2×8 + 5×99 = 511 -/
168
170
  def gamma_numerator : ℕ := 511
@@ -10,13 +10,13 @@
10
10
  Reference: GIFT v3.2 Implementation Plan
11
11
  -/
12
12
 
13
+ import GIFT.Core
13
14
  import GIFT.Algebraic.Octonions
14
15
  import GIFT.Algebraic.BettiNumbers
15
- import GIFT.Algebra
16
16
 
17
17
  namespace GIFT.Algebraic.SO16Decomposition
18
18
 
19
- open Octonions BettiNumbers
19
+ open GIFT.Core Octonions BettiNumbers
20
20
 
21
21
  /-!
22
22
  ## SO(n) Dimension Formula
@@ -64,11 +64,11 @@ Total: 21 + 77 + 14 + 8 = 120 = dim(SO(16))
64
64
  -/
65
65
 
66
66
  /-- The geometric part: topology of K₇ + algebra -/
67
- def geometric_part : ℕ := b2 + b3 + G2.dim_G2 + Algebra.rank_E8
67
+ def geometric_part : ℕ := b2 + b3 + G2.dim_G2 + rank_E8
68
68
 
69
69
  /-- Geometric part equals dim(SO(16)) = 120 -/
70
70
  theorem geometric_is_SO16 : geometric_part = 120 := by
71
- unfold geometric_part b2 b3 G2.dim_G2 Algebra.rank_E8
71
+ unfold geometric_part b2 b3 G2.dim_G2 rank_E8
72
72
  native_decide
73
73
 
74
74
  /-- Geometric part equals dim(SO(16)) directly -/
@@ -102,19 +102,19 @@ dim(E₈) = 248 = 120 + 128 = geometric + spinorial
102
102
 
103
103
  /-- MASTER THEOREM: E₈ decomposes as SO(16) adjoint ⊕ SO(16) spinor -/
104
104
  theorem E8_SO16_decomposition :
105
- Algebra.dim_E8 = geometric_part + spinorial_part := by
106
- unfold Algebra.dim_E8 geometric_part spinorial_part
105
+ dim_E8 = geometric_part + spinorial_part := by
106
+ unfold dim_E8 geometric_part spinorial_part
107
107
  native_decide
108
108
 
109
109
  /-- Alternative: dim(E₈) = dim(SO(16)) + spinor(SO(16)) -/
110
110
  theorem E8_equals_SO16_plus_spinor :
111
- Algebra.dim_E8 = dim_SO 16 + spinor_SO16 := by
112
- unfold Algebra.dim_E8 dim_SO spinor_SO16
111
+ dim_E8 = dim_SO 16 + spinor_SO16 := by
112
+ unfold dim_E8 dim_SO spinor_SO16
113
113
  native_decide
114
114
 
115
115
  /-- Physical interpretation: geometry → gauge bosons, octonions → fermions -/
116
116
  theorem gauge_fermion_split :
117
- Algebra.dim_E8 = (b2 + b3 + G2.dim_G2 + Algebra.rank_E8) + 2^imaginary_count := by
117
+ dim_E8 = (b2 + b3 + G2.dim_G2 + rank_E8) + 2^imaginary_count := by
118
118
  native_decide
119
119
 
120
120
  /-!