passagemath-symbolics 10.8.1a1__cp311-cp311-macosx_13_0_arm64.whl

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.
Files changed (182) hide show
  1. passagemath_symbolics/.dylibs/libgmp.10.dylib +0 -0
  2. passagemath_symbolics/__init__.py +3 -0
  3. passagemath_symbolics-10.8.1a1.dist-info/METADATA +186 -0
  4. passagemath_symbolics-10.8.1a1.dist-info/RECORD +182 -0
  5. passagemath_symbolics-10.8.1a1.dist-info/WHEEL +6 -0
  6. passagemath_symbolics-10.8.1a1.dist-info/top_level.txt +3 -0
  7. sage/all__sagemath_symbolics.py +17 -0
  8. sage/calculus/all.py +14 -0
  9. sage/calculus/calculus.py +2838 -0
  10. sage/calculus/desolvers.py +1864 -0
  11. sage/calculus/predefined.py +51 -0
  12. sage/calculus/tests.py +225 -0
  13. sage/calculus/var.cpython-311-darwin.so +0 -0
  14. sage/calculus/var.pyx +401 -0
  15. sage/dynamics/all__sagemath_symbolics.py +6 -0
  16. sage/dynamics/complex_dynamics/all.py +5 -0
  17. sage/dynamics/complex_dynamics/mandel_julia.py +765 -0
  18. sage/dynamics/complex_dynamics/mandel_julia_helper.cpython-311-darwin.so +0 -0
  19. sage/dynamics/complex_dynamics/mandel_julia_helper.pyx +1034 -0
  20. sage/ext/all__sagemath_symbolics.py +1 -0
  21. sage/ext_data/kenzo/CP2.txt +45 -0
  22. sage/ext_data/kenzo/CP3.txt +349 -0
  23. sage/ext_data/kenzo/CP4.txt +4774 -0
  24. sage/ext_data/kenzo/README.txt +49 -0
  25. sage/ext_data/kenzo/S4.txt +20 -0
  26. sage/ext_data/magma/latex/latex.m +1021 -0
  27. sage/ext_data/magma/latex/latex.spec +1 -0
  28. sage/ext_data/magma/sage/basic.m +356 -0
  29. sage/ext_data/magma/sage/sage.spec +1 -0
  30. sage/ext_data/magma/spec +9 -0
  31. sage/geometry/all__sagemath_symbolics.py +8 -0
  32. sage/geometry/hyperbolic_space/all.py +5 -0
  33. sage/geometry/hyperbolic_space/hyperbolic_coercion.py +755 -0
  34. sage/geometry/hyperbolic_space/hyperbolic_constants.py +5 -0
  35. sage/geometry/hyperbolic_space/hyperbolic_geodesic.py +2419 -0
  36. sage/geometry/hyperbolic_space/hyperbolic_interface.py +206 -0
  37. sage/geometry/hyperbolic_space/hyperbolic_isometry.py +1083 -0
  38. sage/geometry/hyperbolic_space/hyperbolic_model.py +1502 -0
  39. sage/geometry/hyperbolic_space/hyperbolic_point.py +621 -0
  40. sage/geometry/riemannian_manifolds/all.py +7 -0
  41. sage/geometry/riemannian_manifolds/parametrized_surface3d.py +1632 -0
  42. sage/geometry/riemannian_manifolds/surface3d_generators.py +461 -0
  43. sage/interfaces/all__sagemath_symbolics.py +1 -0
  44. sage/interfaces/magma.py +2991 -0
  45. sage/interfaces/magma_free.py +90 -0
  46. sage/interfaces/maple.py +1402 -0
  47. sage/interfaces/mathematica.py +1345 -0
  48. sage/interfaces/mathics.py +1312 -0
  49. sage/interfaces/sympy.py +1398 -0
  50. sage/interfaces/sympy_wrapper.py +197 -0
  51. sage/interfaces/tides.py +938 -0
  52. sage/libs/all__sagemath_symbolics.py +6 -0
  53. sage/manifolds/all.py +7 -0
  54. sage/manifolds/calculus_method.py +553 -0
  55. sage/manifolds/catalog.py +437 -0
  56. sage/manifolds/chart.py +4010 -0
  57. sage/manifolds/chart_func.py +3416 -0
  58. sage/manifolds/continuous_map.py +2183 -0
  59. sage/manifolds/continuous_map_image.py +155 -0
  60. sage/manifolds/differentiable/affine_connection.py +2475 -0
  61. sage/manifolds/differentiable/all.py +1 -0
  62. sage/manifolds/differentiable/automorphismfield.py +1383 -0
  63. sage/manifolds/differentiable/automorphismfield_group.py +604 -0
  64. sage/manifolds/differentiable/bundle_connection.py +1445 -0
  65. sage/manifolds/differentiable/characteristic_cohomology_class.py +1840 -0
  66. sage/manifolds/differentiable/chart.py +1241 -0
  67. sage/manifolds/differentiable/curve.py +1028 -0
  68. sage/manifolds/differentiable/de_rham_cohomology.py +541 -0
  69. sage/manifolds/differentiable/degenerate.py +559 -0
  70. sage/manifolds/differentiable/degenerate_submanifold.py +1668 -0
  71. sage/manifolds/differentiable/diff_form.py +1660 -0
  72. sage/manifolds/differentiable/diff_form_module.py +1062 -0
  73. sage/manifolds/differentiable/diff_map.py +1315 -0
  74. sage/manifolds/differentiable/differentiable_submanifold.py +291 -0
  75. sage/manifolds/differentiable/examples/all.py +1 -0
  76. sage/manifolds/differentiable/examples/euclidean.py +2517 -0
  77. sage/manifolds/differentiable/examples/real_line.py +897 -0
  78. sage/manifolds/differentiable/examples/sphere.py +1186 -0
  79. sage/manifolds/differentiable/examples/symplectic_space.py +187 -0
  80. sage/manifolds/differentiable/examples/symplectic_space_test.py +40 -0
  81. sage/manifolds/differentiable/integrated_curve.py +4035 -0
  82. sage/manifolds/differentiable/levi_civita_connection.py +841 -0
  83. sage/manifolds/differentiable/manifold.py +4254 -0
  84. sage/manifolds/differentiable/manifold_homset.py +1826 -0
  85. sage/manifolds/differentiable/metric.py +3032 -0
  86. sage/manifolds/differentiable/mixed_form.py +1507 -0
  87. sage/manifolds/differentiable/mixed_form_algebra.py +559 -0
  88. sage/manifolds/differentiable/multivector_module.py +800 -0
  89. sage/manifolds/differentiable/multivectorfield.py +1522 -0
  90. sage/manifolds/differentiable/poisson_tensor.py +268 -0
  91. sage/manifolds/differentiable/pseudo_riemannian.py +755 -0
  92. sage/manifolds/differentiable/pseudo_riemannian_submanifold.py +1839 -0
  93. sage/manifolds/differentiable/scalarfield.py +1343 -0
  94. sage/manifolds/differentiable/scalarfield_algebra.py +472 -0
  95. sage/manifolds/differentiable/symplectic_form.py +912 -0
  96. sage/manifolds/differentiable/symplectic_form_test.py +220 -0
  97. sage/manifolds/differentiable/tangent_space.py +412 -0
  98. sage/manifolds/differentiable/tangent_vector.py +616 -0
  99. sage/manifolds/differentiable/tensorfield.py +4665 -0
  100. sage/manifolds/differentiable/tensorfield_module.py +963 -0
  101. sage/manifolds/differentiable/tensorfield_paral.py +2450 -0
  102. sage/manifolds/differentiable/tensorfield_paral_test.py +16 -0
  103. sage/manifolds/differentiable/vector_bundle.py +1725 -0
  104. sage/manifolds/differentiable/vectorfield.py +1717 -0
  105. sage/manifolds/differentiable/vectorfield_module.py +2445 -0
  106. sage/manifolds/differentiable/vectorframe.py +1832 -0
  107. sage/manifolds/family.py +270 -0
  108. sage/manifolds/local_frame.py +1490 -0
  109. sage/manifolds/manifold.py +3090 -0
  110. sage/manifolds/manifold_homset.py +452 -0
  111. sage/manifolds/operators.py +359 -0
  112. sage/manifolds/point.py +994 -0
  113. sage/manifolds/scalarfield.py +3718 -0
  114. sage/manifolds/scalarfield_algebra.py +629 -0
  115. sage/manifolds/section.py +3111 -0
  116. sage/manifolds/section_module.py +831 -0
  117. sage/manifolds/structure.py +229 -0
  118. sage/manifolds/subset.py +2721 -0
  119. sage/manifolds/subsets/all.py +1 -0
  120. sage/manifolds/subsets/closure.py +131 -0
  121. sage/manifolds/subsets/pullback.py +883 -0
  122. sage/manifolds/topological_submanifold.py +891 -0
  123. sage/manifolds/trivialization.py +733 -0
  124. sage/manifolds/utilities.py +1348 -0
  125. sage/manifolds/vector_bundle.py +1347 -0
  126. sage/manifolds/vector_bundle_fiber.py +332 -0
  127. sage/manifolds/vector_bundle_fiber_element.py +111 -0
  128. sage/matrix/all__sagemath_symbolics.py +1 -0
  129. sage/matrix/matrix_symbolic_dense.cpython-311-darwin.so +0 -0
  130. sage/matrix/matrix_symbolic_dense.pxd +6 -0
  131. sage/matrix/matrix_symbolic_dense.pyx +1030 -0
  132. sage/matrix/matrix_symbolic_sparse.cpython-311-darwin.so +0 -0
  133. sage/matrix/matrix_symbolic_sparse.pxd +6 -0
  134. sage/matrix/matrix_symbolic_sparse.pyx +1038 -0
  135. sage/modules/all__sagemath_symbolics.py +1 -0
  136. sage/modules/vector_callable_symbolic_dense.py +105 -0
  137. sage/modules/vector_symbolic_dense.py +116 -0
  138. sage/modules/vector_symbolic_sparse.py +118 -0
  139. sage/rings/all__sagemath_symbolics.py +4 -0
  140. sage/rings/asymptotic/all.py +6 -0
  141. sage/rings/asymptotic/asymptotic_expansion_generators.py +1485 -0
  142. sage/rings/asymptotic/asymptotic_ring.py +4858 -0
  143. sage/rings/asymptotic/asymptotics_multivariate_generating_functions.py +4106 -0
  144. sage/rings/asymptotic/growth_group.py +5373 -0
  145. sage/rings/asymptotic/growth_group_cartesian.py +1400 -0
  146. sage/rings/asymptotic/term_monoid.py +5205 -0
  147. sage/rings/function_field/all__sagemath_symbolics.py +2 -0
  148. sage/rings/polynomial/all__sagemath_symbolics.py +1 -0
  149. sage/symbolic/all.py +15 -0
  150. sage/symbolic/assumptions.py +987 -0
  151. sage/symbolic/benchmark.py +93 -0
  152. sage/symbolic/callable.py +456 -0
  153. sage/symbolic/callable.pyi +66 -0
  154. sage/symbolic/comparison_impl.pyi +38 -0
  155. sage/symbolic/complexity_measures.py +35 -0
  156. sage/symbolic/constants.py +1286 -0
  157. sage/symbolic/constants_c_impl.pyi +10 -0
  158. sage/symbolic/expression_conversion_algebraic.py +310 -0
  159. sage/symbolic/expression_conversion_sympy.py +317 -0
  160. sage/symbolic/expression_conversions.py +1727 -0
  161. sage/symbolic/function_factory.py +355 -0
  162. sage/symbolic/function_factory.pyi +41 -0
  163. sage/symbolic/getitem_impl.pyi +24 -0
  164. sage/symbolic/integration/all.py +1 -0
  165. sage/symbolic/integration/external.py +271 -0
  166. sage/symbolic/integration/integral.py +1075 -0
  167. sage/symbolic/maxima_wrapper.py +162 -0
  168. sage/symbolic/operators.py +267 -0
  169. sage/symbolic/operators.pyi +61 -0
  170. sage/symbolic/pynac_constant_impl.pyi +13 -0
  171. sage/symbolic/pynac_function_impl.pyi +8 -0
  172. sage/symbolic/random_tests.py +461 -0
  173. sage/symbolic/relation.py +2062 -0
  174. sage/symbolic/ring.cpython-311-darwin.so +0 -0
  175. sage/symbolic/ring.pxd +5 -0
  176. sage/symbolic/ring.pyi +110 -0
  177. sage/symbolic/ring.pyx +1393 -0
  178. sage/symbolic/series_impl.pyi +10 -0
  179. sage/symbolic/subring.py +1025 -0
  180. sage/symbolic/symengine.py +19 -0
  181. sage/symbolic/tests.py +40 -0
  182. sage/symbolic/units.py +1468 -0
@@ -0,0 +1,3 @@
1
+ # sage_setup: distribution = sagemath-symbolics
2
+
3
+ from sage.all__sagemath_symbolics import *
@@ -0,0 +1,186 @@
1
+ Metadata-Version: 2.4
2
+ Name: passagemath-symbolics
3
+ Version: 10.8.1a1
4
+ Summary: passagemath: Symbolic calculus
5
+ Author-email: The Sage Developers <sage-support@googlegroups.com>
6
+ Maintainer: Matthias Köppe, passagemath contributors
7
+ License-Expression: GPL-2.0-or-later
8
+ Project-URL: release notes, https://github.com/passagemath/passagemath/releases
9
+ Project-URL: repo (upstream), https://github.com/sagemath/sage
10
+ Project-URL: repo, https://github.com/passagemath/passagemath
11
+ Project-URL: documentation, https://passagemath.org/docs/latest
12
+ Project-URL: homepage (upstream), https://www.sagemath.org
13
+ Project-URL: discourse, https://passagemath.discourse.group
14
+ Project-URL: tracker (upstream), https://github.com/sagemath/sage/issues
15
+ Project-URL: tracker, https://github.com/passagemath/passagemath/issues
16
+ Classifier: Development Status :: 6 - Mature
17
+ Classifier: Intended Audience :: Education
18
+ Classifier: Intended Audience :: Science/Research
19
+ Classifier: Operating System :: POSIX
20
+ Classifier: Operating System :: POSIX :: Linux
21
+ Classifier: Operating System :: MacOS :: MacOS X
22
+ Classifier: Programming Language :: Python :: 3 :: Only
23
+ Classifier: Programming Language :: Python :: 3.11
24
+ Classifier: Programming Language :: Python :: 3.12
25
+ Classifier: Programming Language :: Python :: 3.13
26
+ Classifier: Programming Language :: Python :: 3.14
27
+ Classifier: Programming Language :: Python :: Implementation :: CPython
28
+ Classifier: Topic :: Scientific/Engineering :: Mathematics
29
+ Requires-Python: <3.15,>=3.11
30
+ Description-Content-Type: text/x-rst
31
+ Requires-Dist: gmpy2~=2.1.b999
32
+ Requires-Dist: cysignals!=1.12.4; sys_platform == "win32"
33
+ Requires-Dist: cysignals!=1.12.0,>=1.11.2
34
+ Requires-Dist: numpy>=1.25
35
+ Requires-Dist: numpy>=2.2.4
36
+ Requires-Dist: passagemath-categories==10.8.1.alpha1
37
+ Requires-Dist: passagemath-ecl==10.8.1.alpha1
38
+ Requires-Dist: passagemath-environment==10.8.1.alpha1
39
+ Requires-Dist: passagemath-flint==10.8.1.alpha1
40
+ Requires-Dist: passagemath-maxima==10.8.1.alpha1
41
+ Requires-Dist: passagemath-modules==10.8.1.alpha1
42
+ Requires-Dist: passagemath-ntl==10.8.1.alpha1
43
+ Requires-Dist: passagemath-singular==10.8.1.alpha1
44
+ Requires-Dist: sympy<2.0,>=1.6
45
+ Provides-Extra: conf
46
+ Requires-Dist: passagemath-conf; extra == "conf"
47
+ Provides-Extra: test
48
+ Requires-Dist: passagemath-repl; extra == "test"
49
+ Provides-Extra: fricas
50
+ Requires-Dist: passagemath-fricas; extra == "fricas"
51
+ Provides-Extra: giac
52
+ Requires-Dist: passagemath-giac; extra == "giac"
53
+ Provides-Extra: ginac
54
+ Provides-Extra: maxima
55
+ Provides-Extra: ntl
56
+ Provides-Extra: primecount
57
+ Requires-Dist: passagemath-primesieve-primecount; extra == "primecount"
58
+ Provides-Extra: pynac
59
+ Provides-Extra: singular
60
+ Provides-Extra: sympy
61
+ Provides-Extra: plot
62
+ Requires-Dist: passagemath-plot; extra == "plot"
63
+
64
+ ===========================================================
65
+ passagemath: Symbolic calculus
66
+ ===========================================================
67
+
68
+ `passagemath <https://github.com/passagemath/passagemath>`__ is open
69
+ source mathematical software in Python, released under the GNU General
70
+ Public Licence GPLv2+.
71
+
72
+ It is a fork of `SageMath <https://www.sagemath.org/>`__, which has been
73
+ developed 2005-2025 under the motto “Creating a Viable Open Source
74
+ Alternative to Magma, Maple, Mathematica, and MATLAB”.
75
+
76
+ The passagemath fork uses the motto "Creating a Free Passage Between the
77
+ Scientific Python Ecosystem and Mathematical Software Communities."
78
+ It was created in October 2024 with the following goals:
79
+
80
+ - providing modularized installation with pip,
81
+ - establishing first-class membership in the scientific Python
82
+ ecosystem,
83
+ - giving `clear attribution of upstream
84
+ projects <https://groups.google.com/g/sage-devel/c/6HO1HEtL1Fs/m/G002rPGpAAAJ>`__,
85
+ - providing independently usable Python interfaces to upstream
86
+ libraries,
87
+ - offering `platform portability and integration testing
88
+ services <https://github.com/passagemath/passagemath/issues/704>`__
89
+ to upstream projects,
90
+ - inviting collaborations with upstream projects,
91
+ - `building a professional, respectful, inclusive
92
+ community <https://groups.google.com/g/sage-devel/c/xBzaINHWwUQ>`__,
93
+ - `empowering Sage users to participate in the scientific Python ecosystem
94
+ <https://github.com/passagemath/passagemath/issues/248>`__ by publishing packages,
95
+ - developing a port to `Pyodide <https://pyodide.org/en/stable/>`__ for
96
+ serverless deployment with Javascript,
97
+ - developing a native Windows port.
98
+
99
+ `Full documentation <https://passagemath.org/docs/latest/html/en/index.html>`__ is
100
+ available online.
101
+
102
+ passagemath attempts to support and provides binary wheels suitable for
103
+ all major Linux distributions and recent versions of macOS.
104
+
105
+ Binary wheels for native Windows (x86_64) are are available for a subset of
106
+ the passagemath distributions. Use of the full functionality of passagemath
107
+ on Windows currently requires the use of Windows Subsystem for Linux (WSL)
108
+ or virtualization.
109
+
110
+ The supported Python versions in the passagemath 10.6.x series are 3.10.x-3.14.x.
111
+
112
+
113
+ About this pip-installable distribution package
114
+ -----------------------------------------------
115
+
116
+ This pip-installable distribution ``passagemath-symbolics`` is a distribution of a part of the Sage Library.
117
+ It provides a small subset of the modules of the Sage library ("sagelib", ``passagemath-standard``).
118
+
119
+
120
+ What is included
121
+ ----------------
122
+
123
+ * `Symbolic Calculus <https://passagemath.org/docs/latest/html/en/reference/calculus/index.html>`_
124
+
125
+ * `Pynac <http://pynac.org/>`_ (fork of GiNaC)
126
+
127
+ * Arithmetic Functions, `Elementary and Special Functions <https://passagemath.org/docs/latest/html/en/reference/functions/index.html>`_
128
+ (via `sagemath-categories <https://passagemath.org/docs/latest/html/en/reference/spkg/sagemath_categories.html>`_)
129
+
130
+ * `Asymptotic Expansions <https://passagemath.org/docs/latest/html/en/reference/asymptotic/index.html>`_
131
+
132
+ * `SageManifolds <https://sagemanifolds.obspm.fr/>`_: `Topological, Differentiable, Pseudo-Riemannian, Poisson Manifolds <https://passagemath.org/docs/latest/html/en/reference/manifolds/index.html>`_
133
+
134
+ * `Hyperbolic Geometry <https://passagemath.org/docs/latest/html/en/reference/hyperbolic_geometry/index.html>`_
135
+
136
+
137
+ Examples
138
+ --------
139
+
140
+ Using `SageManifolds <https://sagemanifolds.obspm.fr/>`_::
141
+
142
+ $ pipx run --pip-args="--prefer-binary" --spec "passagemath-symbolics[test]" ipython
143
+
144
+ In [1]: from passagemath_symbolics import *
145
+
146
+ In [2]: M = Manifold(4, 'M', structure='Lorentzian'); M
147
+ Out[2]: 4-dimensional Lorentzian manifold M
148
+
149
+ In [3]: X = M.chart(r"t r:(0,+oo) th:(0,pi):\theta ph:(0,2*pi):\phi")
150
+
151
+ In [4]: t,r,th,ph = X[:]; m = var('m'); assume(m>=0)
152
+
153
+ In [5]: g = M.metric(); g[0,0] = -(1-2*m/r); g[1,1] = 1/(1-2*m/r); g[2,2] = r**2; g[3,3] = (r*sin(th))**2; g.display()
154
+ Out[5]: g = (2*m/r - 1) dt⊗dt - 1/(2*m/r - 1) dr⊗dr + r^2 dth⊗dth + r^2*sin(th)^2 dph⊗dph
155
+
156
+ In [6]: g.christoffel_symbols_display()
157
+ Out[6]:
158
+ Gam^t_t,r = -m/(2*m*r - r^2)
159
+ Gam^r_t,t = -(2*m^2 - m*r)/r^3
160
+ Gam^r_r,r = m/(2*m*r - r^2)
161
+ Gam^r_th,th = 2*m - r
162
+ Gam^r_ph,ph = (2*m - r)*sin(th)^2
163
+ Gam^th_r,th = 1/r
164
+ Gam^th_ph,ph = -cos(th)*sin(th)
165
+ Gam^ph_r,ph = 1/r
166
+ Gam^ph_th,ph = cos(th)/sin(th)
167
+
168
+
169
+ Available as extras, from other distributions
170
+ ---------------------------------------------
171
+
172
+ ``pip install "passagemath-symbolics[fricas]"``
173
+ Computer algebra system `FriCAS <https://passagemath.org/docs/latest/html/en/reference/spkg/fricas.html>`_, via `passagemath-fricas <https://passagemath.org/docs/latest/html/en/reference/spkg/sagemath_fricas.html>`_
174
+
175
+ ``pip install "passagemath-symbolics[giac]"``
176
+ Computer algebra system `Giac <https://passagemath.org/docs/latest/html/en/reference/spkg/giac.html>`_, via `passagemath-giac <https://passagemath.org/docs/latest/html/en/reference/spkg/sagemath_giac.html>`_
177
+
178
+ ``pip install "passagemath-symbolics[primecount]"``
179
+ `Prime counting function <https://passagemath.org/docs/latest/html/en/reference/functions/sage/functions/prime_pi.html>`_
180
+ implementation `primecount <https://passagemath.org/docs/latest/html/en/reference/spkg/primecount.html>`_, via `primecountpy <https://passagemath.org/docs/latest/html/en/reference/spkg/primecountpy.html>`_
181
+
182
+ ``pip install "passagemath-symbolics[sympy]"``
183
+ Python library for symbolic mathematics / computer algebra system `SymPy <https://passagemath.org/docs/latest/html/en/reference/spkg/sympy.html>`_
184
+
185
+ ``pip install "passagemath-symbolics[plot]"``
186
+ Plotting facilities
@@ -0,0 +1,182 @@
1
+ passagemath_symbolics/__init__.py,sha256=8H5DSi07JR1Noj5uIPY5l8MMQDuuMuEo5SjZafXotTM,92
2
+ passagemath_symbolics/.dylibs/libgmp.10.dylib,sha256=g6j0NwHqo1EViLi9WoQS02eGuot7f7Tm8yqnK8u3b9k,446592
3
+ passagemath_symbolics-10.8.1a1.dist-info/RECORD,,
4
+ passagemath_symbolics-10.8.1a1.dist-info/WHEEL,sha256=cL5-QvpIOia66Dl7Q7McTOTgE9KP4AzotZisSJ_xGa8,154
5
+ passagemath_symbolics-10.8.1a1.dist-info/top_level.txt,sha256=Ctv_upqOBoMDZeIpWpqltSRnvHcqToMxLE5tAacruSY,28
6
+ passagemath_symbolics-10.8.1a1.dist-info/METADATA,sha256=35NLkh-Z4zbxCH1HkX1bo505s7UWH9RZNmhUuzsgdr0,8440
7
+ sage/all__sagemath_symbolics.py,sha256=7VU5LgQiHSta1jKYzcUXGPcjUDXmTac6O7j5HGjxbuA,611
8
+ sage/dynamics/all__sagemath_symbolics.py,sha256=Z-jK_Ev4k3qjQmjvo2jnmk2YKhfltXlcFVTwPtDFW1s,254
9
+ sage/dynamics/complex_dynamics/mandel_julia_helper.cpython-311-darwin.so,sha256=wmeyRD3jNle9xpgJHmpOANQMTpW4fOSk-QvkXVI8Hoo,246488
10
+ sage/dynamics/complex_dynamics/mandel_julia_helper.pyx,sha256=QbtmtlooJKG8V020x65Fk9G_Q_e71nBKkYl5qP47rig,39698
11
+ sage/dynamics/complex_dynamics/mandel_julia.py,sha256=GNKxyje1uuPxdM93LTLp7rnHLoKFTSP_D19qTq5VzrQ,30162
12
+ sage/dynamics/complex_dynamics/all.py,sha256=gCa1LQwVZesFkhAOkXaInJyKfDmc5QhmFnPCUJBpoRc,253
13
+ sage/manifolds/catalog.py,sha256=nVZzkMvYk_8Q9RSm8m9Ei2MCLtgRGnZ2Gk2qO4gwRUY,14547
14
+ sage/manifolds/section_module.py,sha256=Og3iaxGYVIzbRXm3gji55CCADIex46BQamfG7j0ioMU,31405
15
+ sage/manifolds/vector_bundle_fiber_element.py,sha256=E-f9BWjsUl05_Aas-EG8q0W0QImnvO30-tBk5PEC3dU,3934
16
+ sage/manifolds/topological_submanifold.py,sha256=XIOCIDALm3CYtqWEKm0J2W1bhii5cmLdGr8dqnr-Elw,38857
17
+ sage/manifolds/manifold.py,sha256=bxgDLHAKtBUZPosOAJj-EWhFDup2sbWg1Of1I3C53GQ,118388
18
+ sage/manifolds/calculus_method.py,sha256=eG3CcBwUvtblmAlEf1UjnPg-IzNdy7y6KyH_jjCvRlM,18395
19
+ sage/manifolds/vector_bundle.py,sha256=DIoVbE63FUN8YhPlkTFsYltQw5kdawPb1MXaeI5VK-o,51652
20
+ sage/manifolds/scalarfield.py,sha256=6qqve84n90Kp87Y7pxxaWgN2E6BeK_RrSIDKv2VQ5dA,132294
21
+ sage/manifolds/chart.py,sha256=Q7GtuHQ6yzkP7hzyBy-LW5bP1ivHJh9fM095AfjFcyU,156921
22
+ sage/manifolds/all.py,sha256=a2Ty6ZfqFBh07flJGaWuXsBgQv-cuVyd-vWsjM1bAO8,298
23
+ sage/manifolds/section.py,sha256=1p4U9oSJ-KkxHPLYKvR2tfiiwyj6dBaQk2QTEdiK8Uk,128340
24
+ sage/manifolds/vector_bundle_fiber.py,sha256=R-4P1M13Uqo1oDYu7gkyAaXzjFNGqFZ551r8gpBBwbc,11862
25
+ sage/manifolds/point.py,sha256=GAfmR8Da_bk-oSvEbjvuCLnmpGMUWInkIKgdMQVOxi8,38016
26
+ sage/manifolds/subset.py,sha256=sZA96vGeIPk5qM3utRBRTuVMI3baqrWW0tZ899wva5Q,106214
27
+ sage/manifolds/continuous_map_image.py,sha256=9QtmQ7vsYgMxxAQSTolb1sfj3HvYpv38OmQuG0g25gU,6486
28
+ sage/manifolds/chart_func.py,sha256=fxowH6ZpCLe7z2Wj4BCl1RLssbnphw8hqK14HIW3H7k,106202
29
+ sage/manifolds/manifold_homset.py,sha256=wS42470MIat8Mftaaa816ewitIqt5LchZoYrFPIIevg,16718
30
+ sage/manifolds/structure.py,sha256=n7iuVUjrxP_Wa5W6B5buPnCM1xMMuflqpluRnbPJYYk,7521
31
+ sage/manifolds/family.py,sha256=x-VWprD73Wa827NTmc3xZIQ_NGAJ2yRNvSKz828SXtk,10200
32
+ sage/manifolds/trivialization.py,sha256=9IRCHL3hzAF0WmvfWb6I4rn98ugZQOfs3UKDgVP_Tco,30636
33
+ sage/manifolds/continuous_map.py,sha256=BAEOL6iTDs3_qXIDcaHLn1ybNiPKpfXwOEp2O9tNXic,91529
34
+ sage/manifolds/local_frame.py,sha256=HgIXhVLrFD_ItltX8LybsIEIz3MZ700RLHY40DDTK4o,63738
35
+ sage/manifolds/utilities.py,sha256=zkCgyHpXCmBblYx22aksqUtyFrq2XIjp9pPWGk0RANs,44785
36
+ sage/manifolds/operators.py,sha256=1wo0cQeMHuQi3chvPdxzVLR4gFO6QBkg263P1wYxZ78,12709
37
+ sage/manifolds/scalarfield_algebra.py,sha256=n-bpP2wCL8qXPFhkqxIDxdp9gGIVNB1659nY7y313BY,21944
38
+ sage/manifolds/differentiable/diff_map.py,sha256=Dfjp4h742OW2jFnsJLgl-pVJ8kjO8hBQgnQp-e0GquY,54146
39
+ sage/manifolds/differentiable/vectorfield_module.py,sha256=sLNDOIivRvdILFgWMwBzN1ybsoY6z69XmAdCKqzUDX4,95726
40
+ sage/manifolds/differentiable/tensorfield_module.py,sha256=5TEmwpkZgevVvJzAVAKYPiSPdzvoxs4OidRPAXMRM_U,39184
41
+ sage/manifolds/differentiable/mixed_form_algebra.py,sha256=R379NNVttzEAUCLX-JEalLTSlvSOcptNU2omEw4-0Yw,20707
42
+ sage/manifolds/differentiable/symplectic_form_test.py,sha256=ljOV1uaYMUJuPXvh37v6ljo3NIyH8Yma6rjDgLjr6No,8668
43
+ sage/manifolds/differentiable/manifold.py,sha256=2UUAehcJpd0v1l3vPCIgOQdzNfexMyZhGLSEIAU_xYk,172999
44
+ sage/manifolds/differentiable/vector_bundle.py,sha256=mz2-xWhzgZr1sDDMPXiFbu3Q_V00aZiV4b8ODmt5y4w,69608
45
+ sage/manifolds/differentiable/tangent_space.py,sha256=VUQIArYk7Qm-g1myWQABQ7WduuMIfKY1DHhEkZpQnWk,14456
46
+ sage/manifolds/differentiable/affine_connection.py,sha256=MEwEvTkQ_ANP0hvOXZQCWM8HyMo2Mhuob0Nd2-WOqDc,100840
47
+ sage/manifolds/differentiable/pseudo_riemannian.py,sha256=-NatpjYDKRZ2R-tX7HutlZSFDQtKJRECQzcEA7dGOeA,29107
48
+ sage/manifolds/differentiable/differentiable_submanifold.py,sha256=i4A9Jw6YgX0I0U5_jJ77anfz30Y4GgSW1agMp6Lo0yg,12724
49
+ sage/manifolds/differentiable/tensorfield_paral.py,sha256=muPDLsDI1C4L7MkaTTXwJjHUgkj9uyJs6Le5GF584nU,96655
50
+ sage/manifolds/differentiable/scalarfield.py,sha256=QKngbTwIyoo0GGeW0KtsoyCUwWnHfyogIpYsGuuNo2c,49749
51
+ sage/manifolds/differentiable/vectorfield.py,sha256=SydcutuiTfgm-wai0sUj8wHjQC-lYWFB5PVxOOKbsbE,67018
52
+ sage/manifolds/differentiable/chart.py,sha256=S-TAK7YDIzu29LntCRs3KPwQhcrY3sKZe3QAY99XoYI,48747
53
+ sage/manifolds/differentiable/multivectorfield.py,sha256=sqDyjGrEmbwRPFoANuh5MfKJvIoJ_0e-pD4CkZwophQ,63934
54
+ sage/manifolds/differentiable/all.py,sha256=epni5fokgIOZhDyxkWHwa1nma0LKo6JRfWxRkMPzoqI,48
55
+ sage/manifolds/differentiable/diff_form_module.py,sha256=j4nwm45zVJVojct9cPMmOfmxT8arCXuYWmlYK2N-0QY,40809
56
+ sage/manifolds/differentiable/curve.py,sha256=8mMhT6Z59yvI6g9We9Iwtrs4e5qfrZsjPT_EuNWA8zs,41679
57
+ sage/manifolds/differentiable/levi_civita_connection.py,sha256=m6U-rh1oVZsTfByRAzyrfscWWPKJljLatSa4Z4vOZdc,36296
58
+ sage/manifolds/differentiable/metric.py,sha256=3OWEDrAtZzozVu4uNlVSOUSAeEMTtXISxOCr9NttJCg,125365
59
+ sage/manifolds/differentiable/integrated_curve.py,sha256=kIBpWwkVv_NWxIVAalv6JN3Diax_7TufVrkumpYEuGs,184660
60
+ sage/manifolds/differentiable/tensorfield_paral_test.py,sha256=39xMfbMTfcF3K883U-EWUMi_vins7hPVup9XBEBFoGY,574
61
+ sage/manifolds/differentiable/tangent_vector.py,sha256=W6AHGWWNHw0vIabZICXKPJoMo-LnMRQAXW2ETwY1NYg,23932
62
+ sage/manifolds/differentiable/characteristic_cohomology_class.py,sha256=nRErGnJEaGIjHfxRgo0VA0c2dVI0awMa_hKounxktFs,67544
63
+ sage/manifolds/differentiable/automorphismfield.py,sha256=iy43ljxTvIp550kYU3Lvpn_Wr4o87dkrq720VW1UiAY,57111
64
+ sage/manifolds/differentiable/manifold_homset.py,sha256=JuqWWYHyvx9gkWjxswCoY-7e_PZXqiIl8bhw8Aof1bo,74345
65
+ sage/manifolds/differentiable/degenerate.py,sha256=AyWuPT7iosRYNpXc07Y8b6ChlPtiU63zXDvrw5RPWgM,25185
66
+ sage/manifolds/differentiable/diff_form.py,sha256=cNarRYM-MgjAQSqoc5JPo-cPGOwEUorlDBBX-btcMB8,66535
67
+ sage/manifolds/differentiable/degenerate_submanifold.py,sha256=42NEWo0E5Kq9upBMzvMoy7B2Gq4gSMkaYVi5-old4Nk,73970
68
+ sage/manifolds/differentiable/mixed_form.py,sha256=JNczN-bpVCK8s7n6dieBXPW9HFwFq_8bMaHJ_Ds59Sc,59423
69
+ sage/manifolds/differentiable/vectorframe.py,sha256=s5zX3bVkNxulLGsDicdZBUPlpzOjpUxRt7TXR7rQFmc,76719
70
+ sage/manifolds/differentiable/multivector_module.py,sha256=jbmISNskCCtQCqqgTp9nxHNTKsWORKSawWECys5A_OQ,30400
71
+ sage/manifolds/differentiable/bundle_connection.py,sha256=c72hBIUhcimaJk44Kk2t4D-agSu0FL8tQSpyKfdyZ4I,58444
72
+ sage/manifolds/differentiable/poisson_tensor.py,sha256=GjxeOi0QWQOXcwKm22rw8HlY2Eezi93yow2eUhc4jNs,9223
73
+ sage/manifolds/differentiable/pseudo_riemannian_submanifold.py,sha256=5veqo3c1oxluX6gl3goallopKY-fBp59UKrcwbNkm7Q,80397
74
+ sage/manifolds/differentiable/symplectic_form.py,sha256=BfCV0F4Hq2ypWa0M000mdAORaGfmBgLHoexaAsrSAWY,33208
75
+ sage/manifolds/differentiable/de_rham_cohomology.py,sha256=iS1urzZ7Iy14uXqFsGatjlY6ijjbUsmCVO_7lX_hblc,17369
76
+ sage/manifolds/differentiable/automorphismfield_group.py,sha256=zIz-yyVW732w3xJiIjYjSPTKLx_eXYbp1ro2UCFnT88,23279
77
+ sage/manifolds/differentiable/tensorfield.py,sha256=N3UW5IXDqrS0eflfhCHMLLA1XEEu_ZyB4_omFNGLYXc,195460
78
+ sage/manifolds/differentiable/scalarfield_algebra.py,sha256=U_6FMU9j59zAppeyQQZ3IBrSvYO4KhqLvtSRSYAPtBk,16188
79
+ sage/manifolds/differentiable/examples/real_line.py,sha256=-3NLvbmrtaMLg9vr8vV4C4Wqs6RVNZ4YQhm0_W7sF-A,30816
80
+ sage/manifolds/differentiable/examples/all.py,sha256=epni5fokgIOZhDyxkWHwa1nma0LKo6JRfWxRkMPzoqI,48
81
+ sage/manifolds/differentiable/examples/symplectic_space.py,sha256=x0e2Ap756XlZI40xGfMqZ-uUamzU6D01AAw7rNbzvGY,7330
82
+ sage/manifolds/differentiable/examples/sphere.py,sha256=Oi2Vc_SjW_t6QMB1aJl-cygceOo18MKC7gOew_oYw9g,46507
83
+ sage/manifolds/differentiable/examples/euclidean.py,sha256=a-pNVtAmUz_mUcykuvE-8plvW1MYgT1DF9LOTO23-w8,96998
84
+ sage/manifolds/differentiable/examples/symplectic_space_test.py,sha256=k6ahy1QW2OZoSz40nHn4REwZ2iE7fb9rbbOy4-uTxZg,1193
85
+ sage/manifolds/subsets/pullback.py,sha256=yvMfbDmTbX_ypDn6hNQJ9FQPceotYn8d40WHNBzj2p8,35922
86
+ sage/manifolds/subsets/all.py,sha256=epni5fokgIOZhDyxkWHwa1nma0LKo6JRfWxRkMPzoqI,48
87
+ sage/manifolds/subsets/closure.py,sha256=EnsAVJgP9adtAlJ9jQXrpG_bIx_HU1hsmgwjdve-I6o,5148
88
+ sage/ext_data/kenzo/S4.txt,sha256=iSXavQqy7ep6HFOWnnsHtqoDhL4Hu3s1SpsaUKbizWs,272
89
+ sage/ext_data/kenzo/CP4.txt,sha256=WXb63Qce3f9Z3Q6K3_zkI0W4-cHBM93XMn7K5bNQD3U,640878
90
+ sage/ext_data/kenzo/CP2.txt,sha256=DYHV8ETaavPvch7t5KdEuGhEqoOAozD7NVAzFGbR3ws,1757
91
+ sage/ext_data/kenzo/CP3.txt,sha256=zyCb_0Lh5zAUrK_RJ-wFdCckivlMRyIEnN9xVg1sDsE,27973
92
+ sage/ext_data/kenzo/README.txt,sha256=SZywXyUDRE8JUt2_JajOYslQiEBSkkB5-14jtxPIt08,1912
93
+ sage/ext_data/magma/spec,sha256=2760-LguNwtG2-MSXIAJdummsIdj0hLKapEp6rQAfSI,49
94
+ sage/ext_data/magma/latex/latex.spec,sha256=1ADt_LrQugQ9PYGBekgG206-18fiWlO3VEuqGZ5qEOs,7
95
+ sage/ext_data/magma/latex/latex.m,sha256=7tGYiKjzfcz2c5_vReltFoSgrVYPy7tzDi6Xj6VrBtg,22074
96
+ sage/ext_data/magma/sage/basic.m,sha256=GESxm4QitS3U_q06HSyLZ6_SvSMgU3icqjJzQRDUzuQ,10358
97
+ sage/ext_data/magma/sage/sage.spec,sha256=yvGsKtKYjoAa05CpOHooD6n9q0OfS8lUGauaGyaKvaw,8
98
+ sage/ext/all__sagemath_symbolics.py,sha256=epni5fokgIOZhDyxkWHwa1nma0LKo6JRfWxRkMPzoqI,48
99
+ sage/libs/all__sagemath_symbolics.py,sha256=WoXEdP6h9s0Q7w1L8Mke0cnpB3Mov9QNJ8TTWs-SLdU,130
100
+ sage/rings/all__sagemath_symbolics.py,sha256=ntPE3dUurYc03iRDxLmFMe-80Uwy8m8CP7oDluQ4X6I,136
101
+ sage/rings/asymptotic/asymptotic_ring.py,sha256=o1gGZ4agxdBW0CQCQ9SAXqJYmL6zDrFYfvXEv3tLXas,168536
102
+ sage/rings/asymptotic/asymptotic_expansion_generators.py,sha256=ncHYhJxcwngigCJy5a5UMOSiTkXwNopY_iClLneQvb0,59597
103
+ sage/rings/asymptotic/all.py,sha256=AmZKfCrLYpBtbIhKE8Eawqa102tq75wBJ7fHWscltWY,287
104
+ sage/rings/asymptotic/term_monoid.py,sha256=0u2ciDGjebgM3ldkesN8ZWp5_VIx8h-t8U8oqW5mRsY,190537
105
+ sage/rings/asymptotic/asymptotics_multivariate_generating_functions.py,sha256=_nYoCsea3rvQIpTjg36_m5zibhdpKGGYrVywyWL1OLk,162032
106
+ sage/rings/asymptotic/growth_group_cartesian.py,sha256=xa3TlvYqmPdZOnIY3Q_PyDLSjA7ueSu8AkgNY6sNDbU,50761
107
+ sage/rings/asymptotic/growth_group.py,sha256=a6-K2uXx4E82BjtoBv-rLeYrQpjANv5_JF4gDYziW_Y,178662
108
+ sage/rings/function_field/all__sagemath_symbolics.py,sha256=WF3Hs4ZfiQ2Tx0SwWTQFmt5TENkrXB9vLJSZ8oDrfFc,110
109
+ sage/rings/polynomial/all__sagemath_symbolics.py,sha256=epni5fokgIOZhDyxkWHwa1nma0LKo6JRfWxRkMPzoqI,48
110
+ sage/symbolic/callable.py,sha256=NhEhlGEULh3mpsTuj2cxcx1h-R-lUAMPWno-xnCQpIo,14074
111
+ sage/symbolic/relation.py,sha256=QasIhX4ecJjCZR6SnOnZ--v5Dg94wBDKrLMbSXpzq4M,67681
112
+ sage/symbolic/operators.pyi,sha256=8BGmb8_XUXh0csfz9JSksRXx4PHa5XjfCQrcODr_jf8,1390
113
+ sage/symbolic/getitem_impl.pyi,sha256=jnoU-zOV0HcEL7teZKk5IX-koQb-aur16iIlyO6v8kE,517
114
+ sage/symbolic/units.py,sha256=H1o_FJLE0MRWOzA1F2Iyu8XgWv46yVNofJjuq3lkLzs,64108
115
+ sage/symbolic/ring.pyi,sha256=ZbE8yCCx5SVHF0yXgSLC9QWwtncgkUGuCzr9tq2DBME,2501
116
+ sage/symbolic/benchmark.py,sha256=KzugX4QAE7CD2v5V1rd3qiJ6eEwSXaQWkQmJxcSERPk,3471
117
+ sage/symbolic/constants_c_impl.pyi,sha256=rYpMj5YIZ_DCMhyhfBCM5ezdYCIj3mAg1zJrOxUNtdI,252
118
+ sage/symbolic/pynac_constant_impl.pyi,sha256=Jjxf5i7tgugp3rNPSTL7kfo2kW0jNa0DwjKeL3RQfKs,352
119
+ sage/symbolic/ring.pxd,sha256=if4x_KQl4sQCMIJQ1t77EMkthZZK1hLYFqr5aZ_h-oE,155
120
+ sage/symbolic/constants.py,sha256=4WivwzHOAQIpCHU67iyg8Bs8obys0LenajzrAs21Ciw,34645
121
+ sage/symbolic/symengine.py,sha256=rGN1KLDUt4IabCODYUqcu4J-iuhTJNslkaqIuAyJz5Y,523
122
+ sage/symbolic/maxima_wrapper.py,sha256=o97j1MNlJvFr2zPqX-ZdNyV6JMpcMrgTVY8V2osRlqw,5400
123
+ sage/symbolic/pynac_function_impl.pyi,sha256=aezH-MHoU2T7ccyseZLLj6xspDKEmFPUy-TC4ckt7YM,506
124
+ sage/symbolic/function_factory.pyi,sha256=RfD_fc4MJJbjKuNdZ1DIagT-3G3jK3gAlK7jfbr_Upc,1138
125
+ sage/symbolic/all.py,sha256=mdxP7KxauUxxdBkOv6M7sSHy7KdbLGbKUJVSk48AUdc,617
126
+ sage/symbolic/random_tests.py,sha256=UWklQ4PoRBWumf6ka1iGlV0ls_kUSyWZ6SJLEXbb9II,17180
127
+ sage/symbolic/expression_conversion_algebraic.py,sha256=HfyJnRYSysZTByektbuYc60VHoChRmljEti2i3VrDls,11478
128
+ sage/symbolic/subring.py,sha256=Tfi_CooARvFudtkgbRdsi7-m8Uu2dscvbhoRZlZo5X4,32174
129
+ sage/symbolic/callable.pyi,sha256=nM-3ycnr7-NGSZNCIdwwcKLfqyBTXiDglJyS4-7q9uU,1903
130
+ sage/symbolic/ring.pyx,sha256=7AlgJQZj057Vt0J6G-P1LucaS6tdDYQ0ZJdW7oHB9bw,44112
131
+ sage/symbolic/expression_conversions.py,sha256=DwqSL0dTQD6aD5HuO1B_maIX2FGctQjZHuqt-ydzK7w,59805
132
+ sage/symbolic/expression_conversion_sympy.py,sha256=DaqT05xkLKm2ApqQtu21fFLUS1MYcJBnV6JRRyRmOBk,9703
133
+ sage/symbolic/series_impl.pyi,sha256=7V2PfcI-5-YR6VqK1bpTsvyJnIbq1sHMnMbRwXQ4LlU,414
134
+ sage/symbolic/tests.py,sha256=F7Hu4ARcGl9Wf3Kd8MsUYZbkT6iWUgtkhcUeGO_y968,1265
135
+ sage/symbolic/operators.py,sha256=3U134nD-ht0oUwdbyxjVqzNKB2b6Kx9ciOMRZGscU_8,8033
136
+ sage/symbolic/complexity_measures.py,sha256=60gdcnG2KOYVpwbBhtd5C8YAPYmY8fBZiGE3NPJEv1U,854
137
+ sage/symbolic/comparison_impl.pyi,sha256=cDwpEOdDakgs0m0ljUMN_zZIwulwZh9-ZmQ8nQpQixw,721
138
+ sage/symbolic/ring.cpython-311-darwin.so,sha256=AbSwu-rPI97yKZZ5fXsuuLJIBeikftpLWVbmOXRPQ3c,243224
139
+ sage/symbolic/function_factory.py,sha256=UetBduWrPo5tS0k8fbi4d53UwvCPftkoj6M7uaq0wic,12491
140
+ sage/symbolic/assumptions.py,sha256=gGoJ9eIkjSTyX8R_dkjqbEgJW_zzWDW-RWIegiZzJL4,30853
141
+ sage/symbolic/integration/integral.py,sha256=6DrdkvH9ZmgkbMqhaNfAZanWL7fQMerEY8M92BjDdX0,37468
142
+ sage/symbolic/integration/all.py,sha256=epni5fokgIOZhDyxkWHwa1nma0LKo6JRfWxRkMPzoqI,48
143
+ sage/symbolic/integration/external.py,sha256=xsC7p5kOq3Ovl2X1VfPQ-AsvuWkDH_Sl8lxxj1UfEvs,9598
144
+ sage/geometry/all__sagemath_symbolics.py,sha256=p1mkLttIsl4jfOrSdk2us4LdG6bBIGV2RlzoVqcTzNU,252
145
+ sage/geometry/riemannian_manifolds/all.py,sha256=jpQfGOM-5kuQKfiSCovSB0HGSaPHO0XCQ1Ivy7e4xtA,315
146
+ sage/geometry/riemannian_manifolds/parametrized_surface3d.py,sha256=MecVYNBfjGxYyntX08qszHfHBy8zxkeysDQh_Sf6bYQ,65279
147
+ sage/geometry/riemannian_manifolds/surface3d_generators.py,sha256=3tR471uQVHX-MuLuQOmdPlu6M1ZGf2cCavAxI9g-SWE,15783
148
+ sage/geometry/hyperbolic_space/hyperbolic_isometry.py,sha256=V-5xd8ZBTMZTZlDuWSNdwniOKC3cMi0rcZjWU_dr3Tw,35053
149
+ sage/geometry/hyperbolic_space/hyperbolic_coercion.py,sha256=EXXsScH2tj2VIwVzXZjgWfsEcXwjnj9i9BJx1EZs0sQ,24535
150
+ sage/geometry/hyperbolic_space/hyperbolic_interface.py,sha256=oqzyXkE0w6XGwlpQyNhlmYo2KhNeBMsfDL9hIPBDovc,6323
151
+ sage/geometry/hyperbolic_space/all.py,sha256=91X2KwD_liHakKzxraNoZiKcMQnzj0RXENrwFd6usfs,197
152
+ sage/geometry/hyperbolic_space/hyperbolic_constants.py,sha256=69CN4HGi2xAVFzydIiyrGl0JoxNwAL8frBAuEeAdDnY,166
153
+ sage/geometry/hyperbolic_space/hyperbolic_point.py,sha256=bJ6i9GSOMriSAxHlk-7EAqN6ImZYOHZineY_6wBGI0c,20446
154
+ sage/geometry/hyperbolic_space/hyperbolic_model.py,sha256=4gAak-sJGQZG3uvqICWrRzASz6A2Y_2C7FMLAS35d5U,49800
155
+ sage/geometry/hyperbolic_space/hyperbolic_geodesic.py,sha256=oFYjDy0-DRQkFH7GfcMsYYikttQM7HnbQbLX2TALNrk,84568
156
+ sage/calculus/predefined.py,sha256=arFvCCzbcUpRAuomzZQd43uZW67aAnWStqzOvFESpWo,764
157
+ sage/calculus/desolvers.py,sha256=rzjL8LCrFUaa5CyVCuE0wFipYttMMEEYdyY2mka1Hjk,69257
158
+ sage/calculus/var.pyx,sha256=gZ7V6rxl99BnNcxutYNCxEksUCPXppYjq0eqfMjkEoA,12963
159
+ sage/calculus/all.py,sha256=ltDen-9IxxSS3-wIXyAVK1tbvY_BgTQt1x7Zp2c22bA,751
160
+ sage/calculus/var.cpython-311-darwin.so,sha256=qt-EZYeDqGhFZRFS38a578fO3QoFcaOhc35t_OTP9kM,102088
161
+ sage/calculus/calculus.py,sha256=THPkkEi0DKUUrqaAVsFjaFr611hcZLoW_rDC5X5bdOE,89073
162
+ sage/calculus/tests.py,sha256=awOgbDYmTPzGfF75ajvJ_KAI5os4ZjlQH9mniB_BMuw,6538
163
+ sage/modules/vector_symbolic_dense.py,sha256=wovLED1rrmyG24nHneTChC86zrf54J4nIR7yv7NXE3w,4140
164
+ sage/modules/all__sagemath_symbolics.py,sha256=epni5fokgIOZhDyxkWHwa1nma0LKo6JRfWxRkMPzoqI,48
165
+ sage/modules/vector_callable_symbolic_dense.py,sha256=buotHK7lRiE_HdmxZkSvcSiqYxFx5hEnDq6bY4QZL1U,3348
166
+ sage/modules/vector_symbolic_sparse.py,sha256=kso025T9x4oYpE-vZg0fyRnUyA6pMHtzlNeygyDXu7M,4290
167
+ sage/matrix/matrix_symbolic_sparse.pxd,sha256=lQRrk-R4LsOTHgDCRSU-b-O39ivu4Om0hymYyno1SyQ,186
168
+ sage/matrix/matrix_symbolic_dense.pyx,sha256=73eHcUZLJ-9OvdWzcbndFuxWqpu_T6xGQruuW0h1xYA,33961
169
+ sage/matrix/matrix_symbolic_dense.cpython-311-darwin.so,sha256=k8GJytCq_Wa3n3qvXNybPIsqRdtGJWq3U_WjDlBB2hk,201352
170
+ sage/matrix/all__sagemath_symbolics.py,sha256=epni5fokgIOZhDyxkWHwa1nma0LKo6JRfWxRkMPzoqI,48
171
+ sage/matrix/matrix_symbolic_sparse.cpython-311-darwin.so,sha256=UZJpdouKcOLUP5N4q5H3MesqGqNLNq4_ru3uCAYHwRs,201568
172
+ sage/matrix/matrix_symbolic_dense.pxd,sha256=YYX59lRZGQGBzO9wdwSOx_7zU_Un96V2aa_3ZAk1udk,182
173
+ sage/matrix/matrix_symbolic_sparse.pyx,sha256=NYpZ_1ykSOrusoUTL1sfpgtnpV0xfjXkda9wYqpYn5w,35356
174
+ sage/interfaces/sympy_wrapper.py,sha256=adnxg9zTvZosBowd4muQhauU50B0bNqIXDmET7-lEKs,5683
175
+ sage/interfaces/maple.py,sha256=AiirNiUXjDHfu8XsTi8vRsR4c3Giqi4z0s9xBxjdJjE,44251
176
+ sage/interfaces/mathematica.py,sha256=FuvbYUVjZ8PQdeVPOhRADIC4IvzAv29REuIo0TWqUuA,46928
177
+ sage/interfaces/all__sagemath_symbolics.py,sha256=epni5fokgIOZhDyxkWHwa1nma0LKo6JRfWxRkMPzoqI,48
178
+ sage/interfaces/sympy.py,sha256=nrrqkEuomB9q-u2X6kVS3RjRLpOMABFrUf1pp9FJpzk,44688
179
+ sage/interfaces/mathics.py,sha256=9q-YB5HtPjjC5EmpKXTKMwrAiypI1RjVpYmuU8nTZfk,40344
180
+ sage/interfaces/magma_free.py,sha256=j70KxDqqR-Fvabk6kVGzdoje59Gh3FhmGI89LgzOgeA,3030
181
+ sage/interfaces/tides.py,sha256=InI2qoCFXLLBoeU4Q8Xkg0KvKqH9DI4X1rLV-MhzdAE,31592
182
+ sage/interfaces/magma.py,sha256=RkzwpsYBQwMUWbManNp3UaHXhUZJp9YuWzD6tmC7iEs,99194
@@ -0,0 +1,6 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.10.1)
3
+ Root-Is-Purelib: false
4
+ Tag: cp311-cp311-macosx_13_0_arm64
5
+ Generator: delocate 0.13.1.dev42+ga0af70b54
6
+
@@ -0,0 +1,3 @@
1
+
2
+ passagemath_symbolics
3
+ sage
@@ -0,0 +1,17 @@
1
+ # sage_setup: distribution = sagemath-symbolics
2
+ # delvewheel: patch
3
+ from .all__sagemath_modules import *
4
+ from .all__sagemath_singular import *
5
+
6
+ from sage.dynamics.complex_dynamics import *
7
+ from sage.interfaces.all import *
8
+ from sage.libs.all__sagemath_symbolics import *
9
+ from sage.manifolds.all import *
10
+ from sage.matrix.all__sagemath_symbolics import *
11
+ from sage.rings.all__sagemath_symbolics import *
12
+ from sage.symbolic.all import *
13
+ from sage.calculus.all import *
14
+ from sage.dynamics.all__sagemath_symbolics import *
15
+ from sage.geometry.all__sagemath_symbolics import *
16
+
17
+ from sage.calculus.predefined import x
sage/calculus/all.py ADDED
@@ -0,0 +1,14 @@
1
+ # sage_setup: distribution = sagemath-symbolics
2
+ from sage.calculus.all__sagemath_modules import *
3
+
4
+ from sage.calculus import desolvers
5
+ from sage.calculus.calculus import maxima as maxima_calculus
6
+ from sage.calculus.calculus import (laplace, inverse_laplace,
7
+ limit, lim)
8
+
9
+ from sage.calculus.desolvers import (desolve, desolve_laplace, desolve_system,
10
+ eulers_method, eulers_method_2x2,
11
+ eulers_method_2x2_plot, desolve_rk4, desolve_system_rk4,
12
+ desolve_odeint, desolve_mintides, desolve_tides_mpfr)
13
+ from sage.calculus.expr import symbolic_expression
14
+ from sage.calculus.var import (var, function, clear_vars)