passagemath-symbolics 10.6.30__cp310-cp310-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.

Potentially problematic release.


This version of passagemath-symbolics might be problematic. Click here for more details.

Files changed (171) hide show
  1. passagemath_symbolics-10.6.30.dist-info/METADATA +186 -0
  2. passagemath_symbolics-10.6.30.dist-info/RECORD +171 -0
  3. passagemath_symbolics-10.6.30.dist-info/WHEEL +6 -0
  4. passagemath_symbolics-10.6.30.dist-info/top_level.txt +2 -0
  5. passagemath_symbolics.dylibs/libgmp.10.dylib +0 -0
  6. sage/all__sagemath_symbolics.py +16 -0
  7. sage/calculus/all.py +14 -0
  8. sage/calculus/calculus.py +2826 -0
  9. sage/calculus/desolvers.py +1866 -0
  10. sage/calculus/predefined.py +51 -0
  11. sage/calculus/tests.py +225 -0
  12. sage/calculus/var.cpython-310-darwin.so +0 -0
  13. sage/calculus/var.pyx +401 -0
  14. sage/dynamics/all__sagemath_symbolics.py +6 -0
  15. sage/dynamics/complex_dynamics/all.py +5 -0
  16. sage/dynamics/complex_dynamics/mandel_julia.py +765 -0
  17. sage/dynamics/complex_dynamics/mandel_julia_helper.cpython-310-darwin.so +0 -0
  18. sage/dynamics/complex_dynamics/mandel_julia_helper.pyx +1035 -0
  19. sage/ext/all__sagemath_symbolics.py +1 -0
  20. sage/ext_data/kenzo/CP2.txt +45 -0
  21. sage/ext_data/kenzo/CP3.txt +349 -0
  22. sage/ext_data/kenzo/CP4.txt +4774 -0
  23. sage/ext_data/kenzo/README.txt +49 -0
  24. sage/ext_data/kenzo/S4.txt +20 -0
  25. sage/ext_data/magma/latex/latex.m +1021 -0
  26. sage/ext_data/magma/latex/latex.spec +1 -0
  27. sage/ext_data/magma/sage/basic.m +356 -0
  28. sage/ext_data/magma/sage/sage.spec +1 -0
  29. sage/ext_data/magma/spec +9 -0
  30. sage/geometry/all__sagemath_symbolics.py +8 -0
  31. sage/geometry/hyperbolic_space/all.py +5 -0
  32. sage/geometry/hyperbolic_space/hyperbolic_coercion.py +743 -0
  33. sage/geometry/hyperbolic_space/hyperbolic_constants.py +5 -0
  34. sage/geometry/hyperbolic_space/hyperbolic_geodesic.py +2409 -0
  35. sage/geometry/hyperbolic_space/hyperbolic_interface.py +206 -0
  36. sage/geometry/hyperbolic_space/hyperbolic_isometry.py +1082 -0
  37. sage/geometry/hyperbolic_space/hyperbolic_model.py +1502 -0
  38. sage/geometry/hyperbolic_space/hyperbolic_point.py +621 -0
  39. sage/geometry/riemannian_manifolds/all.py +7 -0
  40. sage/geometry/riemannian_manifolds/parametrized_surface3d.py +1632 -0
  41. sage/geometry/riemannian_manifolds/surface3d_generators.py +461 -0
  42. sage/interfaces/all__sagemath_symbolics.py +1 -0
  43. sage/interfaces/magma.py +3017 -0
  44. sage/interfaces/magma_free.py +92 -0
  45. sage/interfaces/maple.py +1397 -0
  46. sage/interfaces/mathematica.py +1345 -0
  47. sage/interfaces/mathics.py +1312 -0
  48. sage/interfaces/sympy.py +1398 -0
  49. sage/interfaces/sympy_wrapper.py +197 -0
  50. sage/interfaces/tides.py +938 -0
  51. sage/libs/all__sagemath_symbolics.py +6 -0
  52. sage/manifolds/all.py +7 -0
  53. sage/manifolds/calculus_method.py +555 -0
  54. sage/manifolds/catalog.py +437 -0
  55. sage/manifolds/chart.py +4019 -0
  56. sage/manifolds/chart_func.py +3419 -0
  57. sage/manifolds/continuous_map.py +2183 -0
  58. sage/manifolds/continuous_map_image.py +155 -0
  59. sage/manifolds/differentiable/affine_connection.py +2475 -0
  60. sage/manifolds/differentiable/all.py +1 -0
  61. sage/manifolds/differentiable/automorphismfield.py +1383 -0
  62. sage/manifolds/differentiable/automorphismfield_group.py +604 -0
  63. sage/manifolds/differentiable/bundle_connection.py +1445 -0
  64. sage/manifolds/differentiable/characteristic_cohomology_class.py +1840 -0
  65. sage/manifolds/differentiable/chart.py +1241 -0
  66. sage/manifolds/differentiable/curve.py +1028 -0
  67. sage/manifolds/differentiable/de_rham_cohomology.py +541 -0
  68. sage/manifolds/differentiable/degenerate.py +559 -0
  69. sage/manifolds/differentiable/degenerate_submanifold.py +1671 -0
  70. sage/manifolds/differentiable/diff_form.py +1658 -0
  71. sage/manifolds/differentiable/diff_form_module.py +1062 -0
  72. sage/manifolds/differentiable/diff_map.py +1315 -0
  73. sage/manifolds/differentiable/differentiable_submanifold.py +291 -0
  74. sage/manifolds/differentiable/examples/all.py +1 -0
  75. sage/manifolds/differentiable/examples/euclidean.py +2517 -0
  76. sage/manifolds/differentiable/examples/real_line.py +897 -0
  77. sage/manifolds/differentiable/examples/sphere.py +1186 -0
  78. sage/manifolds/differentiable/examples/symplectic_space.py +187 -0
  79. sage/manifolds/differentiable/examples/symplectic_space_test.py +40 -0
  80. sage/manifolds/differentiable/integrated_curve.py +4035 -0
  81. sage/manifolds/differentiable/levi_civita_connection.py +841 -0
  82. sage/manifolds/differentiable/manifold.py +4254 -0
  83. sage/manifolds/differentiable/manifold_homset.py +1826 -0
  84. sage/manifolds/differentiable/metric.py +3032 -0
  85. sage/manifolds/differentiable/mixed_form.py +1507 -0
  86. sage/manifolds/differentiable/mixed_form_algebra.py +559 -0
  87. sage/manifolds/differentiable/multivector_module.py +800 -0
  88. sage/manifolds/differentiable/multivectorfield.py +1520 -0
  89. sage/manifolds/differentiable/poisson_tensor.py +268 -0
  90. sage/manifolds/differentiable/pseudo_riemannian.py +755 -0
  91. sage/manifolds/differentiable/pseudo_riemannian_submanifold.py +1839 -0
  92. sage/manifolds/differentiable/scalarfield.py +1343 -0
  93. sage/manifolds/differentiable/scalarfield_algebra.py +472 -0
  94. sage/manifolds/differentiable/symplectic_form.py +910 -0
  95. sage/manifolds/differentiable/symplectic_form_test.py +220 -0
  96. sage/manifolds/differentiable/tangent_space.py +412 -0
  97. sage/manifolds/differentiable/tangent_vector.py +616 -0
  98. sage/manifolds/differentiable/tensorfield.py +4665 -0
  99. sage/manifolds/differentiable/tensorfield_module.py +963 -0
  100. sage/manifolds/differentiable/tensorfield_paral.py +2450 -0
  101. sage/manifolds/differentiable/tensorfield_paral_test.py +16 -0
  102. sage/manifolds/differentiable/vector_bundle.py +1728 -0
  103. sage/manifolds/differentiable/vectorfield.py +1717 -0
  104. sage/manifolds/differentiable/vectorfield_module.py +2445 -0
  105. sage/manifolds/differentiable/vectorframe.py +1832 -0
  106. sage/manifolds/family.py +270 -0
  107. sage/manifolds/local_frame.py +1490 -0
  108. sage/manifolds/manifold.py +3090 -0
  109. sage/manifolds/manifold_homset.py +452 -0
  110. sage/manifolds/operators.py +359 -0
  111. sage/manifolds/point.py +994 -0
  112. sage/manifolds/scalarfield.py +3718 -0
  113. sage/manifolds/scalarfield_algebra.py +629 -0
  114. sage/manifolds/section.py +3111 -0
  115. sage/manifolds/section_module.py +831 -0
  116. sage/manifolds/structure.py +229 -0
  117. sage/manifolds/subset.py +2764 -0
  118. sage/manifolds/subsets/all.py +1 -0
  119. sage/manifolds/subsets/closure.py +131 -0
  120. sage/manifolds/subsets/pullback.py +885 -0
  121. sage/manifolds/topological_submanifold.py +891 -0
  122. sage/manifolds/trivialization.py +733 -0
  123. sage/manifolds/utilities.py +1348 -0
  124. sage/manifolds/vector_bundle.py +1342 -0
  125. sage/manifolds/vector_bundle_fiber.py +332 -0
  126. sage/manifolds/vector_bundle_fiber_element.py +111 -0
  127. sage/matrix/all__sagemath_symbolics.py +1 -0
  128. sage/matrix/matrix_symbolic_dense.cpython-310-darwin.so +0 -0
  129. sage/matrix/matrix_symbolic_dense.pxd +6 -0
  130. sage/matrix/matrix_symbolic_dense.pyx +1022 -0
  131. sage/matrix/matrix_symbolic_sparse.cpython-310-darwin.so +0 -0
  132. sage/matrix/matrix_symbolic_sparse.pxd +6 -0
  133. sage/matrix/matrix_symbolic_sparse.pyx +1029 -0
  134. sage/modules/all__sagemath_symbolics.py +1 -0
  135. sage/modules/vector_callable_symbolic_dense.py +105 -0
  136. sage/modules/vector_symbolic_dense.py +116 -0
  137. sage/modules/vector_symbolic_sparse.py +118 -0
  138. sage/rings/all__sagemath_symbolics.py +4 -0
  139. sage/rings/asymptotic/all.py +6 -0
  140. sage/rings/asymptotic/asymptotic_expansion_generators.py +1485 -0
  141. sage/rings/asymptotic/asymptotic_ring.py +4858 -0
  142. sage/rings/asymptotic/asymptotics_multivariate_generating_functions.py +4153 -0
  143. sage/rings/asymptotic/growth_group.py +5373 -0
  144. sage/rings/asymptotic/growth_group_cartesian.py +1400 -0
  145. sage/rings/asymptotic/term_monoid.py +5237 -0
  146. sage/rings/function_field/all__sagemath_symbolics.py +2 -0
  147. sage/rings/polynomial/all__sagemath_symbolics.py +1 -0
  148. sage/symbolic/all.py +15 -0
  149. sage/symbolic/assumptions.py +985 -0
  150. sage/symbolic/benchmark.py +93 -0
  151. sage/symbolic/callable.py +459 -0
  152. sage/symbolic/complexity_measures.py +35 -0
  153. sage/symbolic/constants.py +1287 -0
  154. sage/symbolic/expression_conversion_algebraic.py +310 -0
  155. sage/symbolic/expression_conversion_sympy.py +317 -0
  156. sage/symbolic/expression_conversions.py +1713 -0
  157. sage/symbolic/function_factory.py +355 -0
  158. sage/symbolic/integration/all.py +1 -0
  159. sage/symbolic/integration/external.py +270 -0
  160. sage/symbolic/integration/integral.py +1115 -0
  161. sage/symbolic/maxima_wrapper.py +162 -0
  162. sage/symbolic/operators.py +267 -0
  163. sage/symbolic/random_tests.py +462 -0
  164. sage/symbolic/relation.py +1907 -0
  165. sage/symbolic/ring.cpython-310-darwin.so +0 -0
  166. sage/symbolic/ring.pxd +5 -0
  167. sage/symbolic/ring.pyx +1395 -0
  168. sage/symbolic/subring.py +1025 -0
  169. sage/symbolic/symengine.py +19 -0
  170. sage/symbolic/tests.py +40 -0
  171. sage/symbolic/units.py +1470 -0
@@ -0,0 +1,186 @@
1
+ Metadata-Version: 2.4
2
+ Name: passagemath-symbolics
3
+ Version: 10.6.30
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.10
24
+ Classifier: Programming Language :: Python :: 3.11
25
+ Classifier: Programming Language :: Python :: 3.12
26
+ Classifier: Programming Language :: Python :: 3.13
27
+ Classifier: Programming Language :: Python :: Implementation :: CPython
28
+ Classifier: Topic :: Scientific/Engineering :: Mathematics
29
+ Requires-Python: <3.14,>=3.10
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.19
35
+ Requires-Dist: numpy>=1.22.4
36
+ Requires-Dist: passagemath-categories~=10.6.30.0
37
+ Requires-Dist: passagemath-ecl~=10.6.30.0
38
+ Requires-Dist: passagemath-environment~=10.6.30.0
39
+ Requires-Dist: passagemath-flint~=10.6.30.0
40
+ Requires-Dist: passagemath-maxima~=10.6.30.0
41
+ Requires-Dist: passagemath-modules~=10.6.30.0
42
+ Requires-Dist: passagemath-ntl~=10.6.30.0
43
+ Requires-Dist: passagemath-singular~=10.6.30.0
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.13.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 sage.all__sagemath_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,171 @@
1
+ passagemath_symbolics.dylibs/libgmp.10.dylib,sha256=KNYJwBtINWAKP29CIeBzWl2cz543ibCCTBlVy0BknUM,464688
2
+ passagemath_symbolics-10.6.30.dist-info/RECORD,,
3
+ passagemath_symbolics-10.6.30.dist-info/WHEEL,sha256=712N52SU3I2_rIttYKaXuJDaqfMQVjrhVLnTCkanCjg,136
4
+ passagemath_symbolics-10.6.30.dist-info/top_level.txt,sha256=Kmzulf9WsphADFQuqgvdy5mvTLDj_V2zkFHU2s3UXos,6
5
+ passagemath_symbolics-10.6.30.dist-info/METADATA,sha256=cLuYbMWbFQAoPvihjB_bdkmuea4naQD8oaq9czYspbo,8414
6
+ sage/all__sagemath_symbolics.py,sha256=mxdn9vOQ6i9_40sxQi-ayK1x-l894uJfy41yJB60V_w,573
7
+ sage/dynamics/all__sagemath_symbolics.py,sha256=Z-jK_Ev4k3qjQmjvo2jnmk2YKhfltXlcFVTwPtDFW1s,254
8
+ sage/dynamics/complex_dynamics/mandel_julia_helper.pyx,sha256=B-TVw4ZO2CEBpZSmMU_YxyRT_bUaMDL9bnK7lylEgTE,39720
9
+ sage/dynamics/complex_dynamics/mandel_julia_helper.cpython-310-darwin.so,sha256=vbdrgVWZ31uAn9xkvHiSbirxOZw1PlNkh-ql6eBSFw8,254440
10
+ sage/dynamics/complex_dynamics/mandel_julia.py,sha256=GNKxyje1uuPxdM93LTLp7rnHLoKFTSP_D19qTq5VzrQ,30162
11
+ sage/dynamics/complex_dynamics/all.py,sha256=gCa1LQwVZesFkhAOkXaInJyKfDmc5QhmFnPCUJBpoRc,253
12
+ sage/manifolds/catalog.py,sha256=nVZzkMvYk_8Q9RSm8m9Ei2MCLtgRGnZ2Gk2qO4gwRUY,14547
13
+ sage/manifolds/section_module.py,sha256=Og3iaxGYVIzbRXm3gji55CCADIex46BQamfG7j0ioMU,31405
14
+ sage/manifolds/vector_bundle_fiber_element.py,sha256=E-f9BWjsUl05_Aas-EG8q0W0QImnvO30-tBk5PEC3dU,3934
15
+ sage/manifolds/topological_submanifold.py,sha256=XIOCIDALm3CYtqWEKm0J2W1bhii5cmLdGr8dqnr-Elw,38857
16
+ sage/manifolds/manifold.py,sha256=EOL6qQevhOCDTeg0nV67jAlDzMZEPjX9izmVFnA6ljw,118470
17
+ sage/manifolds/calculus_method.py,sha256=xBAhOKdjsF8ZTDD_gf4y3bpLds8sl3axSPCksoptZOA,18439
18
+ sage/manifolds/vector_bundle.py,sha256=OiSdbCcj3dzUIxAnEjbeUIf5m9a5iSudNbAiPEvoHtM,51762
19
+ sage/manifolds/scalarfield.py,sha256=6qqve84n90Kp87Y7pxxaWgN2E6BeK_RrSIDKv2VQ5dA,132294
20
+ sage/manifolds/chart.py,sha256=xuuVI7VoX1mYEzeqLjDpGtJkQUB2tyQAjfjQuNAQ28I,157132
21
+ sage/manifolds/all.py,sha256=a2Ty6ZfqFBh07flJGaWuXsBgQv-cuVyd-vWsjM1bAO8,298
22
+ sage/manifolds/section.py,sha256=HdIDwoEmZzRJvHz87ajGX-m8N0QpDHRDBbCPskaoz6U,128340
23
+ sage/manifolds/vector_bundle_fiber.py,sha256=R-4P1M13Uqo1oDYu7gkyAaXzjFNGqFZ551r8gpBBwbc,11862
24
+ sage/manifolds/point.py,sha256=oq6X-uB8UKsgvsbVJwpSt4N3bUopDZsMN-gwBfJvnTY,38018
25
+ sage/manifolds/subset.py,sha256=Oemzkb0N1XGVLaSKc76DUCkle1ERf1YXvhI2tgmARfE,108336
26
+ sage/manifolds/continuous_map_image.py,sha256=9QtmQ7vsYgMxxAQSTolb1sfj3HvYpv38OmQuG0g25gU,6486
27
+ sage/manifolds/chart_func.py,sha256=nQypfDx-JiMV24QTj3ClbG5N1u6VLyL7QtcV4rNu43k,106333
28
+ sage/manifolds/manifold_homset.py,sha256=wS42470MIat8Mftaaa816ewitIqt5LchZoYrFPIIevg,16718
29
+ sage/manifolds/structure.py,sha256=n7iuVUjrxP_Wa5W6B5buPnCM1xMMuflqpluRnbPJYYk,7521
30
+ sage/manifolds/family.py,sha256=x-VWprD73Wa827NTmc3xZIQ_NGAJ2yRNvSKz828SXtk,10200
31
+ sage/manifolds/trivialization.py,sha256=9IRCHL3hzAF0WmvfWb6I4rn98ugZQOfs3UKDgVP_Tco,30636
32
+ sage/manifolds/continuous_map.py,sha256=nOG0UjRuRanelArfmfh2nAk2qSUkGGSHvT6rnhTukbI,91531
33
+ sage/manifolds/local_frame.py,sha256=HgIXhVLrFD_ItltX8LybsIEIz3MZ700RLHY40DDTK4o,63738
34
+ sage/manifolds/utilities.py,sha256=zkCgyHpXCmBblYx22aksqUtyFrq2XIjp9pPWGk0RANs,44785
35
+ sage/manifolds/operators.py,sha256=1wo0cQeMHuQi3chvPdxzVLR4gFO6QBkg263P1wYxZ78,12709
36
+ sage/manifolds/scalarfield_algebra.py,sha256=n-bpP2wCL8qXPFhkqxIDxdp9gGIVNB1659nY7y313BY,21944
37
+ sage/manifolds/differentiable/diff_map.py,sha256=Dfjp4h742OW2jFnsJLgl-pVJ8kjO8hBQgnQp-e0GquY,54146
38
+ sage/manifolds/differentiable/vectorfield_module.py,sha256=sLNDOIivRvdILFgWMwBzN1ybsoY6z69XmAdCKqzUDX4,95726
39
+ sage/manifolds/differentiable/tensorfield_module.py,sha256=5TEmwpkZgevVvJzAVAKYPiSPdzvoxs4OidRPAXMRM_U,39184
40
+ sage/manifolds/differentiable/mixed_form_algebra.py,sha256=R379NNVttzEAUCLX-JEalLTSlvSOcptNU2omEw4-0Yw,20707
41
+ sage/manifolds/differentiable/symplectic_form_test.py,sha256=ljOV1uaYMUJuPXvh37v6ljo3NIyH8Yma6rjDgLjr6No,8668
42
+ sage/manifolds/differentiable/manifold.py,sha256=2UUAehcJpd0v1l3vPCIgOQdzNfexMyZhGLSEIAU_xYk,172999
43
+ sage/manifolds/differentiable/vector_bundle.py,sha256=gNIl6D_PBB_P2XuAjsX278Cs92uRz0qn5K6X3bnC9oQ,69855
44
+ sage/manifolds/differentiable/tangent_space.py,sha256=VUQIArYk7Qm-g1myWQABQ7WduuMIfKY1DHhEkZpQnWk,14456
45
+ sage/manifolds/differentiable/affine_connection.py,sha256=MEwEvTkQ_ANP0hvOXZQCWM8HyMo2Mhuob0Nd2-WOqDc,100840
46
+ sage/manifolds/differentiable/pseudo_riemannian.py,sha256=-NatpjYDKRZ2R-tX7HutlZSFDQtKJRECQzcEA7dGOeA,29107
47
+ sage/manifolds/differentiable/differentiable_submanifold.py,sha256=i4A9Jw6YgX0I0U5_jJ77anfz30Y4GgSW1agMp6Lo0yg,12724
48
+ sage/manifolds/differentiable/tensorfield_paral.py,sha256=KloOftAnhoY-Xy1y7UVNJaW84xPAN9_8KPYpV10mYEQ,96658
49
+ sage/manifolds/differentiable/scalarfield.py,sha256=QKngbTwIyoo0GGeW0KtsoyCUwWnHfyogIpYsGuuNo2c,49749
50
+ sage/manifolds/differentiable/vectorfield.py,sha256=SydcutuiTfgm-wai0sUj8wHjQC-lYWFB5PVxOOKbsbE,67018
51
+ sage/manifolds/differentiable/chart.py,sha256=m1KSkE-0MWz90ytV9NgvdID35yq7VZm6t5qhewSTu-E,48751
52
+ sage/manifolds/differentiable/multivectorfield.py,sha256=0j3vrJDNzQxHcltGpFTeDNJgeQT7pvchUWZ4n_QD2tM,63925
53
+ sage/manifolds/differentiable/all.py,sha256=epni5fokgIOZhDyxkWHwa1nma0LKo6JRfWxRkMPzoqI,48
54
+ sage/manifolds/differentiable/diff_form_module.py,sha256=j4nwm45zVJVojct9cPMmOfmxT8arCXuYWmlYK2N-0QY,40809
55
+ sage/manifolds/differentiable/curve.py,sha256=8mMhT6Z59yvI6g9We9Iwtrs4e5qfrZsjPT_EuNWA8zs,41679
56
+ sage/manifolds/differentiable/levi_civita_connection.py,sha256=m6U-rh1oVZsTfByRAzyrfscWWPKJljLatSa4Z4vOZdc,36296
57
+ sage/manifolds/differentiable/metric.py,sha256=3OWEDrAtZzozVu4uNlVSOUSAeEMTtXISxOCr9NttJCg,125365
58
+ sage/manifolds/differentiable/integrated_curve.py,sha256=kIBpWwkVv_NWxIVAalv6JN3Diax_7TufVrkumpYEuGs,184660
59
+ sage/manifolds/differentiable/tensorfield_paral_test.py,sha256=39xMfbMTfcF3K883U-EWUMi_vins7hPVup9XBEBFoGY,574
60
+ sage/manifolds/differentiable/tangent_vector.py,sha256=W6AHGWWNHw0vIabZICXKPJoMo-LnMRQAXW2ETwY1NYg,23932
61
+ sage/manifolds/differentiable/characteristic_cohomology_class.py,sha256=YFW_471TtUgDprLJ_3SwnxHewkKPBPUwkt131FARHKg,67530
62
+ sage/manifolds/differentiable/automorphismfield.py,sha256=iy43ljxTvIp550kYU3Lvpn_Wr4o87dkrq720VW1UiAY,57111
63
+ sage/manifolds/differentiable/manifold_homset.py,sha256=JuqWWYHyvx9gkWjxswCoY-7e_PZXqiIl8bhw8Aof1bo,74345
64
+ sage/manifolds/differentiable/degenerate.py,sha256=AyWuPT7iosRYNpXc07Y8b6ChlPtiU63zXDvrw5RPWgM,25185
65
+ sage/manifolds/differentiable/diff_form.py,sha256=QqQm5Oe4HWjmMv0MMcA8Kvxcq1A1xcsj_BurJMFRRTs,66535
66
+ sage/manifolds/differentiable/degenerate_submanifold.py,sha256=EUaN-r4ENmrb9smlpA0le8t3_vc0PCzkioIP_ozztP4,74027
67
+ sage/manifolds/differentiable/mixed_form.py,sha256=JNczN-bpVCK8s7n6dieBXPW9HFwFq_8bMaHJ_Ds59Sc,59423
68
+ sage/manifolds/differentiable/vectorframe.py,sha256=s5zX3bVkNxulLGsDicdZBUPlpzOjpUxRt7TXR7rQFmc,76719
69
+ sage/manifolds/differentiable/multivector_module.py,sha256=jbmISNskCCtQCqqgTp9nxHNTKsWORKSawWECys5A_OQ,30400
70
+ sage/manifolds/differentiable/bundle_connection.py,sha256=c72hBIUhcimaJk44Kk2t4D-agSu0FL8tQSpyKfdyZ4I,58444
71
+ sage/manifolds/differentiable/poisson_tensor.py,sha256=GjxeOi0QWQOXcwKm22rw8HlY2Eezi93yow2eUhc4jNs,9223
72
+ sage/manifolds/differentiable/pseudo_riemannian_submanifold.py,sha256=5veqo3c1oxluX6gl3goallopKY-fBp59UKrcwbNkm7Q,80397
73
+ sage/manifolds/differentiable/symplectic_form.py,sha256=FDS-ZkNXGSeNj7XiJX4HYwu7M8qgM21Ek0r8xbBCq-4,33141
74
+ sage/manifolds/differentiable/de_rham_cohomology.py,sha256=iS1urzZ7Iy14uXqFsGatjlY6ijjbUsmCVO_7lX_hblc,17369
75
+ sage/manifolds/differentiable/automorphismfield_group.py,sha256=zIz-yyVW732w3xJiIjYjSPTKLx_eXYbp1ro2UCFnT88,23279
76
+ sage/manifolds/differentiable/tensorfield.py,sha256=N3UW5IXDqrS0eflfhCHMLLA1XEEu_ZyB4_omFNGLYXc,195460
77
+ sage/manifolds/differentiable/scalarfield_algebra.py,sha256=U_6FMU9j59zAppeyQQZ3IBrSvYO4KhqLvtSRSYAPtBk,16188
78
+ sage/manifolds/differentiable/examples/real_line.py,sha256=-3NLvbmrtaMLg9vr8vV4C4Wqs6RVNZ4YQhm0_W7sF-A,30816
79
+ sage/manifolds/differentiable/examples/all.py,sha256=epni5fokgIOZhDyxkWHwa1nma0LKo6JRfWxRkMPzoqI,48
80
+ sage/manifolds/differentiable/examples/symplectic_space.py,sha256=7O6FQNQNnyoICeRI8LZkWjbn0jz4f-Vi5bYfERuHfiY,7335
81
+ sage/manifolds/differentiable/examples/sphere.py,sha256=Oi2Vc_SjW_t6QMB1aJl-cygceOo18MKC7gOew_oYw9g,46507
82
+ sage/manifolds/differentiable/examples/euclidean.py,sha256=a-pNVtAmUz_mUcykuvE-8plvW1MYgT1DF9LOTO23-w8,96998
83
+ sage/manifolds/differentiable/examples/symplectic_space_test.py,sha256=k6ahy1QW2OZoSz40nHn4REwZ2iE7fb9rbbOy4-uTxZg,1193
84
+ sage/manifolds/subsets/pullback.py,sha256=7V19RrKHqTultL2gI4hBfTvgnDUbABujtyhHaHup0nQ,35976
85
+ sage/manifolds/subsets/all.py,sha256=epni5fokgIOZhDyxkWHwa1nma0LKo6JRfWxRkMPzoqI,48
86
+ sage/manifolds/subsets/closure.py,sha256=EnsAVJgP9adtAlJ9jQXrpG_bIx_HU1hsmgwjdve-I6o,5148
87
+ sage/ext_data/kenzo/S4.txt,sha256=iSXavQqy7ep6HFOWnnsHtqoDhL4Hu3s1SpsaUKbizWs,272
88
+ sage/ext_data/kenzo/CP4.txt,sha256=WXb63Qce3f9Z3Q6K3_zkI0W4-cHBM93XMn7K5bNQD3U,640878
89
+ sage/ext_data/kenzo/CP2.txt,sha256=DYHV8ETaavPvch7t5KdEuGhEqoOAozD7NVAzFGbR3ws,1757
90
+ sage/ext_data/kenzo/CP3.txt,sha256=zyCb_0Lh5zAUrK_RJ-wFdCckivlMRyIEnN9xVg1sDsE,27973
91
+ sage/ext_data/kenzo/README.txt,sha256=SZywXyUDRE8JUt2_JajOYslQiEBSkkB5-14jtxPIt08,1912
92
+ sage/ext_data/magma/spec,sha256=2760-LguNwtG2-MSXIAJdummsIdj0hLKapEp6rQAfSI,49
93
+ sage/ext_data/magma/latex/latex.spec,sha256=1ADt_LrQugQ9PYGBekgG206-18fiWlO3VEuqGZ5qEOs,7
94
+ sage/ext_data/magma/latex/latex.m,sha256=7tGYiKjzfcz2c5_vReltFoSgrVYPy7tzDi6Xj6VrBtg,22074
95
+ sage/ext_data/magma/sage/basic.m,sha256=GESxm4QitS3U_q06HSyLZ6_SvSMgU3icqjJzQRDUzuQ,10358
96
+ sage/ext_data/magma/sage/sage.spec,sha256=yvGsKtKYjoAa05CpOHooD6n9q0OfS8lUGauaGyaKvaw,8
97
+ sage/ext/all__sagemath_symbolics.py,sha256=epni5fokgIOZhDyxkWHwa1nma0LKo6JRfWxRkMPzoqI,48
98
+ sage/libs/all__sagemath_symbolics.py,sha256=WoXEdP6h9s0Q7w1L8Mke0cnpB3Mov9QNJ8TTWs-SLdU,130
99
+ sage/rings/all__sagemath_symbolics.py,sha256=ntPE3dUurYc03iRDxLmFMe-80Uwy8m8CP7oDluQ4X6I,136
100
+ sage/rings/asymptotic/asymptotic_ring.py,sha256=N9V-lGD9jq2Rk3Lm0UiGGGwlGXAucVCmn1iDPBpoxEY,168540
101
+ sage/rings/asymptotic/asymptotic_expansion_generators.py,sha256=ncHYhJxcwngigCJy5a5UMOSiTkXwNopY_iClLneQvb0,59597
102
+ sage/rings/asymptotic/all.py,sha256=AmZKfCrLYpBtbIhKE8Eawqa102tq75wBJ7fHWscltWY,287
103
+ sage/rings/asymptotic/term_monoid.py,sha256=GaEC1SryeFH97_OMvwpC4CURa188CpZtKUOCFeCM2Jo,191839
104
+ sage/rings/asymptotic/asymptotics_multivariate_generating_functions.py,sha256=jNmornSwQOZgBde79dW2IcHqRZH4JArU4gLAhD9ZIt8,163458
105
+ sage/rings/asymptotic/growth_group_cartesian.py,sha256=xa3TlvYqmPdZOnIY3Q_PyDLSjA7ueSu8AkgNY6sNDbU,50761
106
+ sage/rings/asymptotic/growth_group.py,sha256=a6-K2uXx4E82BjtoBv-rLeYrQpjANv5_JF4gDYziW_Y,178662
107
+ sage/rings/function_field/all__sagemath_symbolics.py,sha256=WF3Hs4ZfiQ2Tx0SwWTQFmt5TENkrXB9vLJSZ8oDrfFc,110
108
+ sage/rings/polynomial/all__sagemath_symbolics.py,sha256=epni5fokgIOZhDyxkWHwa1nma0LKo6JRfWxRkMPzoqI,48
109
+ sage/symbolic/callable.py,sha256=rTsD_FC1ujXm3RRS4jygBKf80-Ee2svQ8H1r2EJyUL4,14146
110
+ sage/symbolic/relation.py,sha256=4ALO4NvxBtrNz2MX9L4_lILB3yqeNrSyshxq_3IZ0Qg,62754
111
+ sage/symbolic/units.py,sha256=3fU34iTHf4QwXMJgWnLmSnOYPXwqFhoCdMrN8cEm7c8,64125
112
+ sage/symbolic/benchmark.py,sha256=KzugX4QAE7CD2v5V1rd3qiJ6eEwSXaQWkQmJxcSERPk,3471
113
+ sage/symbolic/ring.pxd,sha256=if4x_KQl4sQCMIJQ1t77EMkthZZK1hLYFqr5aZ_h-oE,155
114
+ sage/symbolic/constants.py,sha256=U1yBUZETb5zdNaKkI7CFo5-D1dv2xsZk9Q4ZMd_fHys,34702
115
+ sage/symbolic/symengine.py,sha256=rGN1KLDUt4IabCODYUqcu4J-iuhTJNslkaqIuAyJz5Y,523
116
+ sage/symbolic/maxima_wrapper.py,sha256=o97j1MNlJvFr2zPqX-ZdNyV6JMpcMrgTVY8V2osRlqw,5400
117
+ sage/symbolic/all.py,sha256=mdxP7KxauUxxdBkOv6M7sSHy7KdbLGbKUJVSk48AUdc,617
118
+ sage/symbolic/random_tests.py,sha256=QlkP8fJ1SCEdJTZTgnfFUsv8PC4sUMkw5AA2nOibe8g,17229
119
+ sage/symbolic/expression_conversion_algebraic.py,sha256=B7I_mvZeL8tCaLGjr5g_PtgCueonzllcLPYIvLMaNNU,11478
120
+ sage/symbolic/subring.py,sha256=u1oXLcK6UfGtRe_cKu3vkMj_kR85aZkOwMpG-5MVGBA,32161
121
+ sage/symbolic/ring.cpython-310-darwin.so,sha256=gupxsYtpvPUldI6EwEyh9Lj4HNMLo2bY7Am_aJlOMp8,271184
122
+ sage/symbolic/ring.pyx,sha256=MGn3-CuPSZ3t-aYhqTRsmcw6uHmapHrxqBwUnRfZELo,44528
123
+ sage/symbolic/expression_conversions.py,sha256=cmI76bxe9dP2chi9nSkuZXpgdaYDq2iA2Y_GePSk2tY,59465
124
+ sage/symbolic/expression_conversion_sympy.py,sha256=DaqT05xkLKm2ApqQtu21fFLUS1MYcJBnV6JRRyRmOBk,9703
125
+ sage/symbolic/tests.py,sha256=F7Hu4ARcGl9Wf3Kd8MsUYZbkT6iWUgtkhcUeGO_y968,1265
126
+ sage/symbolic/operators.py,sha256=3U134nD-ht0oUwdbyxjVqzNKB2b6Kx9ciOMRZGscU_8,8033
127
+ sage/symbolic/complexity_measures.py,sha256=60gdcnG2KOYVpwbBhtd5C8YAPYmY8fBZiGE3NPJEv1U,854
128
+ sage/symbolic/function_factory.py,sha256=UetBduWrPo5tS0k8fbi4d53UwvCPftkoj6M7uaq0wic,12491
129
+ sage/symbolic/assumptions.py,sha256=CRxLjv9_wJnCP622b_Y2U3MQ-2xK5Hsuj5DVML1XO3o,30657
130
+ sage/symbolic/integration/integral.py,sha256=vb1QNGfwKWBwkgbjCrGg5PdgSeReFNplI51AU9AGlLk,38285
131
+ sage/symbolic/integration/all.py,sha256=epni5fokgIOZhDyxkWHwa1nma0LKo6JRfWxRkMPzoqI,48
132
+ sage/symbolic/integration/external.py,sha256=z4iFKzg9uIApfcaggVFQyOiaxaBNXDIM03u91Y9CM_8,9596
133
+ sage/geometry/all__sagemath_symbolics.py,sha256=p1mkLttIsl4jfOrSdk2us4LdG6bBIGV2RlzoVqcTzNU,252
134
+ sage/geometry/riemannian_manifolds/all.py,sha256=jpQfGOM-5kuQKfiSCovSB0HGSaPHO0XCQ1Ivy7e4xtA,315
135
+ sage/geometry/riemannian_manifolds/parametrized_surface3d.py,sha256=MecVYNBfjGxYyntX08qszHfHBy8zxkeysDQh_Sf6bYQ,65279
136
+ sage/geometry/riemannian_manifolds/surface3d_generators.py,sha256=3tR471uQVHX-MuLuQOmdPlu6M1ZGf2cCavAxI9g-SWE,15783
137
+ sage/geometry/hyperbolic_space/hyperbolic_isometry.py,sha256=RoIrzlEOjOOhBnTrST-aeVPnKsSM3Ckm3ND6WjpwH8w,34992
138
+ sage/geometry/hyperbolic_space/hyperbolic_coercion.py,sha256=hC2XqNNIEwvP-AGgld3Qys0vr3B-zwUu6cU1tuE2eG4,24117
139
+ sage/geometry/hyperbolic_space/hyperbolic_interface.py,sha256=oqzyXkE0w6XGwlpQyNhlmYo2KhNeBMsfDL9hIPBDovc,6323
140
+ sage/geometry/hyperbolic_space/all.py,sha256=91X2KwD_liHakKzxraNoZiKcMQnzj0RXENrwFd6usfs,197
141
+ sage/geometry/hyperbolic_space/hyperbolic_constants.py,sha256=69CN4HGi2xAVFzydIiyrGl0JoxNwAL8frBAuEeAdDnY,166
142
+ sage/geometry/hyperbolic_space/hyperbolic_point.py,sha256=bJ6i9GSOMriSAxHlk-7EAqN6ImZYOHZineY_6wBGI0c,20446
143
+ sage/geometry/hyperbolic_space/hyperbolic_model.py,sha256=_t0Bt0sNak07hcHv0w-oIyAP0TmKCSKRNxygFkQWjjE,49734
144
+ sage/geometry/hyperbolic_space/hyperbolic_geodesic.py,sha256=IpbxoBXUQA-Wb7HeXiGKj1KfvZF32DJ3qoSEpiRro5E,84221
145
+ sage/calculus/var.cpython-310-darwin.so,sha256=IPJkOO5B8DOfPFeEq4gk1ibE8mxPQWawhNNjFoQgwSs,95960
146
+ sage/calculus/predefined.py,sha256=arFvCCzbcUpRAuomzZQd43uZW67aAnWStqzOvFESpWo,764
147
+ sage/calculus/desolvers.py,sha256=qrFosFD3B8iT1gW7wrmp7Iv_xynR6R-ZnZlVVVMA3qk,69154
148
+ sage/calculus/var.pyx,sha256=gZ7V6rxl99BnNcxutYNCxEksUCPXppYjq0eqfMjkEoA,12963
149
+ sage/calculus/all.py,sha256=ltDen-9IxxSS3-wIXyAVK1tbvY_BgTQt1x7Zp2c22bA,751
150
+ sage/calculus/calculus.py,sha256=5_bkNUGrs2SE2eoy-mskJ2MHu1qu5D5mD6-7esLX160,88897
151
+ sage/calculus/tests.py,sha256=awOgbDYmTPzGfF75ajvJ_KAI5os4ZjlQH9mniB_BMuw,6538
152
+ sage/modules/vector_symbolic_dense.py,sha256=wovLED1rrmyG24nHneTChC86zrf54J4nIR7yv7NXE3w,4140
153
+ sage/modules/all__sagemath_symbolics.py,sha256=epni5fokgIOZhDyxkWHwa1nma0LKo6JRfWxRkMPzoqI,48
154
+ sage/modules/vector_callable_symbolic_dense.py,sha256=buotHK7lRiE_HdmxZkSvcSiqYxFx5hEnDq6bY4QZL1U,3348
155
+ sage/modules/vector_symbolic_sparse.py,sha256=kso025T9x4oYpE-vZg0fyRnUyA6pMHtzlNeygyDXu7M,4290
156
+ sage/matrix/matrix_symbolic_dense.cpython-310-darwin.so,sha256=gGPkEJBpyTO9dOqUZR1kHg7eZLBsKoqB8eJ9gbBTMsI,182712
157
+ sage/matrix/matrix_symbolic_sparse.pxd,sha256=lQRrk-R4LsOTHgDCRSU-b-O39ivu4Om0hymYyno1SyQ,186
158
+ sage/matrix/matrix_symbolic_sparse.cpython-310-darwin.so,sha256=0zZrwMvydK8OTOh6QrsTCvt87vm-U5BprCqCEmkHDEo,183120
159
+ sage/matrix/matrix_symbolic_dense.pyx,sha256=bHIr8iMkeFPPEcZXwIfXmJcdtHqpEQ_y5CVvRgcG7y8,33690
160
+ sage/matrix/all__sagemath_symbolics.py,sha256=epni5fokgIOZhDyxkWHwa1nma0LKo6JRfWxRkMPzoqI,48
161
+ sage/matrix/matrix_symbolic_dense.pxd,sha256=YYX59lRZGQGBzO9wdwSOx_7zU_Un96V2aa_3ZAk1udk,182
162
+ sage/matrix/matrix_symbolic_sparse.pyx,sha256=PcEcwEwY6EPe8Lm39YEwJcglQAipmBPWpoeJz6NXQ8c,35063
163
+ sage/interfaces/sympy_wrapper.py,sha256=adnxg9zTvZosBowd4muQhauU50B0bNqIXDmET7-lEKs,5683
164
+ sage/interfaces/maple.py,sha256=9XgDNIdIBNqGo6KopELMS2MI_xxgtIp2vPZOt5kJV7k,44155
165
+ sage/interfaces/mathematica.py,sha256=FuvbYUVjZ8PQdeVPOhRADIC4IvzAv29REuIo0TWqUuA,46928
166
+ sage/interfaces/all__sagemath_symbolics.py,sha256=epni5fokgIOZhDyxkWHwa1nma0LKo6JRfWxRkMPzoqI,48
167
+ sage/interfaces/sympy.py,sha256=f2MS0xbSO8CHunNCyjZOkKImGI3ve0VA98HBGj0JM40,44683
168
+ sage/interfaces/mathics.py,sha256=9q-YB5HtPjjC5EmpKXTKMwrAiypI1RjVpYmuU8nTZfk,40344
169
+ sage/interfaces/magma_free.py,sha256=3Pje2G7sq8IzhpiZvy2OtjnRIDwbUw4JZEilw63Svpo,2986
170
+ sage/interfaces/tides.py,sha256=InI2qoCFXLLBoeU4Q8Xkg0KvKqH9DI4X1rLV-MhzdAE,31592
171
+ sage/interfaces/magma.py,sha256=jlf6D6pSkSEkyBmdsqQJop4DxRgoYskHw_8xZBgkes0,100023
@@ -0,0 +1,6 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: false
4
+ Tag: cp310-cp310-macosx_13_0_arm64
5
+ Generator: delocate 0.13.0
6
+
@@ -0,0 +1,16 @@
1
+ # sage_setup: distribution = sagemath-symbolics
2
+ # delvewheel: patch
3
+ from .all__sagemath_modules import *
4
+
5
+ from sage.dynamics.complex_dynamics import *
6
+ from sage.interfaces.all import *
7
+ from sage.libs.all__sagemath_symbolics import *
8
+ from sage.manifolds.all import *
9
+ from sage.matrix.all__sagemath_symbolics import *
10
+ from sage.rings.all__sagemath_symbolics import *
11
+ from sage.symbolic.all import *
12
+ from sage.calculus.all import *
13
+ from sage.dynamics.all__sagemath_symbolics import *
14
+ from sage.geometry.all__sagemath_symbolics import *
15
+
16
+ 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)