passagemath-symbolics 10.6.40__cp314-cp314t-macosx_13_0_x86_64.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 (172) hide show
  1. passagemath_symbolics/.dylibs/libgmp.10.dylib +0 -0
  2. passagemath_symbolics/__init__.py +3 -0
  3. passagemath_symbolics-10.6.40.dist-info/METADATA +187 -0
  4. passagemath_symbolics-10.6.40.dist-info/RECORD +172 -0
  5. passagemath_symbolics-10.6.40.dist-info/WHEEL +6 -0
  6. passagemath_symbolics-10.6.40.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 +2826 -0
  10. sage/calculus/desolvers.py +1866 -0
  11. sage/calculus/predefined.py +51 -0
  12. sage/calculus/tests.py +225 -0
  13. sage/calculus/var.cpython-314t-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-314t-darwin.so +0 -0
  19. sage/dynamics/complex_dynamics/mandel_julia_helper.pyx +1035 -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 +743 -0
  34. sage/geometry/hyperbolic_space/hyperbolic_constants.py +5 -0
  35. sage/geometry/hyperbolic_space/hyperbolic_geodesic.py +2409 -0
  36. sage/geometry/hyperbolic_space/hyperbolic_interface.py +206 -0
  37. sage/geometry/hyperbolic_space/hyperbolic_isometry.py +1082 -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 +3017 -0
  45. sage/interfaces/magma_free.py +92 -0
  46. sage/interfaces/maple.py +1397 -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 +555 -0
  55. sage/manifolds/catalog.py +437 -0
  56. sage/manifolds/chart.py +4019 -0
  57. sage/manifolds/chart_func.py +3419 -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 +1671 -0
  71. sage/manifolds/differentiable/diff_form.py +1658 -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 +1520 -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 +910 -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 +1728 -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 +2764 -0
  119. sage/manifolds/subsets/all.py +1 -0
  120. sage/manifolds/subsets/closure.py +131 -0
  121. sage/manifolds/subsets/pullback.py +885 -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 +1342 -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-314t-darwin.so +0 -0
  130. sage/matrix/matrix_symbolic_dense.pxd +6 -0
  131. sage/matrix/matrix_symbolic_dense.pyx +1022 -0
  132. sage/matrix/matrix_symbolic_sparse.cpython-314t-darwin.so +0 -0
  133. sage/matrix/matrix_symbolic_sparse.pxd +6 -0
  134. sage/matrix/matrix_symbolic_sparse.pyx +1029 -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 +4153 -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 +5237 -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 +985 -0
  151. sage/symbolic/benchmark.py +93 -0
  152. sage/symbolic/callable.py +459 -0
  153. sage/symbolic/complexity_measures.py +35 -0
  154. sage/symbolic/constants.py +1287 -0
  155. sage/symbolic/expression_conversion_algebraic.py +310 -0
  156. sage/symbolic/expression_conversion_sympy.py +317 -0
  157. sage/symbolic/expression_conversions.py +1713 -0
  158. sage/symbolic/function_factory.py +355 -0
  159. sage/symbolic/integration/all.py +1 -0
  160. sage/symbolic/integration/external.py +270 -0
  161. sage/symbolic/integration/integral.py +1115 -0
  162. sage/symbolic/maxima_wrapper.py +162 -0
  163. sage/symbolic/operators.py +267 -0
  164. sage/symbolic/random_tests.py +462 -0
  165. sage/symbolic/relation.py +1907 -0
  166. sage/symbolic/ring.cpython-314t-darwin.so +0 -0
  167. sage/symbolic/ring.pxd +5 -0
  168. sage/symbolic/ring.pyx +1396 -0
  169. sage/symbolic/subring.py +1025 -0
  170. sage/symbolic/symengine.py +19 -0
  171. sage/symbolic/tests.py +40 -0
  172. sage/symbolic/units.py +1470 -0
@@ -0,0 +1,3 @@
1
+ # sage_setup: distribution = sagemath-symbolics
2
+
3
+ from sage.all__sagemath_symbolics import *
@@ -0,0 +1,187 @@
1
+ Metadata-Version: 2.4
2
+ Name: passagemath-symbolics
3
+ Version: 10.6.40
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 :: 3.14
28
+ Classifier: Programming Language :: Python :: Implementation :: CPython
29
+ Classifier: Topic :: Scientific/Engineering :: Mathematics
30
+ Requires-Python: <3.15,>=3.10
31
+ Description-Content-Type: text/x-rst
32
+ Requires-Dist: gmpy2~=2.1.b999
33
+ Requires-Dist: cysignals!=1.12.4; sys_platform == "win32"
34
+ Requires-Dist: cysignals!=1.12.0,>=1.11.2
35
+ Requires-Dist: numpy>=1.19
36
+ Requires-Dist: numpy>=1.22.4
37
+ Requires-Dist: passagemath-categories~=10.6.40.0
38
+ Requires-Dist: passagemath-ecl~=10.6.40.0
39
+ Requires-Dist: passagemath-environment~=10.6.40.0
40
+ Requires-Dist: passagemath-flint~=10.6.40.0
41
+ Requires-Dist: passagemath-maxima~=10.6.40.0
42
+ Requires-Dist: passagemath-modules~=10.6.40.0
43
+ Requires-Dist: passagemath-ntl~=10.6.40.0
44
+ Requires-Dist: passagemath-singular~=10.6.40.0
45
+ Requires-Dist: sympy<2.0,>=1.6
46
+ Provides-Extra: conf
47
+ Requires-Dist: passagemath-conf; extra == "conf"
48
+ Provides-Extra: test
49
+ Requires-Dist: passagemath-repl; extra == "test"
50
+ Provides-Extra: fricas
51
+ Requires-Dist: passagemath-fricas; extra == "fricas"
52
+ Provides-Extra: giac
53
+ Requires-Dist: passagemath-giac; extra == "giac"
54
+ Provides-Extra: ginac
55
+ Provides-Extra: maxima
56
+ Provides-Extra: ntl
57
+ Provides-Extra: primecount
58
+ Requires-Dist: passagemath-primesieve-primecount; extra == "primecount"
59
+ Provides-Extra: pynac
60
+ Provides-Extra: singular
61
+ Provides-Extra: sympy
62
+ Provides-Extra: plot
63
+ Requires-Dist: passagemath-plot; extra == "plot"
64
+
65
+ ===========================================================
66
+ passagemath: Symbolic calculus
67
+ ===========================================================
68
+
69
+ `passagemath <https://github.com/passagemath/passagemath>`__ is open
70
+ source mathematical software in Python, released under the GNU General
71
+ Public Licence GPLv2+.
72
+
73
+ It is a fork of `SageMath <https://www.sagemath.org/>`__, which has been
74
+ developed 2005-2025 under the motto “Creating a Viable Open Source
75
+ Alternative to Magma, Maple, Mathematica, and MATLAB”.
76
+
77
+ The passagemath fork uses the motto "Creating a Free Passage Between the
78
+ Scientific Python Ecosystem and Mathematical Software Communities."
79
+ It was created in October 2024 with the following goals:
80
+
81
+ - providing modularized installation with pip,
82
+ - establishing first-class membership in the scientific Python
83
+ ecosystem,
84
+ - giving `clear attribution of upstream
85
+ projects <https://groups.google.com/g/sage-devel/c/6HO1HEtL1Fs/m/G002rPGpAAAJ>`__,
86
+ - providing independently usable Python interfaces to upstream
87
+ libraries,
88
+ - offering `platform portability and integration testing
89
+ services <https://github.com/passagemath/passagemath/issues/704>`__
90
+ to upstream projects,
91
+ - inviting collaborations with upstream projects,
92
+ - `building a professional, respectful, inclusive
93
+ community <https://groups.google.com/g/sage-devel/c/xBzaINHWwUQ>`__,
94
+ - `empowering Sage users to participate in the scientific Python ecosystem
95
+ <https://github.com/passagemath/passagemath/issues/248>`__ by publishing packages,
96
+ - developing a port to `Pyodide <https://pyodide.org/en/stable/>`__ for
97
+ serverless deployment with Javascript,
98
+ - developing a native Windows port.
99
+
100
+ `Full documentation <https://passagemath.org/docs/latest/html/en/index.html>`__ is
101
+ available online.
102
+
103
+ passagemath attempts to support and provides binary wheels suitable for
104
+ all major Linux distributions and recent versions of macOS.
105
+
106
+ Binary wheels for native Windows (x86_64) are are available for a subset of
107
+ the passagemath distributions. Use of the full functionality of passagemath
108
+ on Windows currently requires the use of Windows Subsystem for Linux (WSL)
109
+ or virtualization.
110
+
111
+ The supported Python versions in the passagemath 10.6.x series are 3.10.x-3.13.x.
112
+
113
+
114
+ About this pip-installable distribution package
115
+ -----------------------------------------------
116
+
117
+ This pip-installable distribution ``passagemath-symbolics`` is a distribution of a part of the Sage Library.
118
+ It provides a small subset of the modules of the Sage library ("sagelib", ``passagemath-standard``).
119
+
120
+
121
+ What is included
122
+ ----------------
123
+
124
+ * `Symbolic Calculus <https://passagemath.org/docs/latest/html/en/reference/calculus/index.html>`_
125
+
126
+ * `Pynac <http://pynac.org/>`_ (fork of GiNaC)
127
+
128
+ * Arithmetic Functions, `Elementary and Special Functions <https://passagemath.org/docs/latest/html/en/reference/functions/index.html>`_
129
+ (via `sagemath-categories <https://passagemath.org/docs/latest/html/en/reference/spkg/sagemath_categories.html>`_)
130
+
131
+ * `Asymptotic Expansions <https://passagemath.org/docs/latest/html/en/reference/asymptotic/index.html>`_
132
+
133
+ * `SageManifolds <https://sagemanifolds.obspm.fr/>`_: `Topological, Differentiable, Pseudo-Riemannian, Poisson Manifolds <https://passagemath.org/docs/latest/html/en/reference/manifolds/index.html>`_
134
+
135
+ * `Hyperbolic Geometry <https://passagemath.org/docs/latest/html/en/reference/hyperbolic_geometry/index.html>`_
136
+
137
+
138
+ Examples
139
+ --------
140
+
141
+ Using `SageManifolds <https://sagemanifolds.obspm.fr/>`_::
142
+
143
+ $ pipx run --pip-args="--prefer-binary" --spec "passagemath-symbolics[test]" ipython
144
+
145
+ In [1]: from passagemath_symbolics import *
146
+
147
+ In [2]: M = Manifold(4, 'M', structure='Lorentzian'); M
148
+ Out[2]: 4-dimensional Lorentzian manifold M
149
+
150
+ In [3]: X = M.chart(r"t r:(0,+oo) th:(0,pi):\theta ph:(0,2*pi):\phi")
151
+
152
+ In [4]: t,r,th,ph = X[:]; m = var('m'); assume(m>=0)
153
+
154
+ 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()
155
+ 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
156
+
157
+ In [6]: g.christoffel_symbols_display()
158
+ Out[6]:
159
+ Gam^t_t,r = -m/(2*m*r - r^2)
160
+ Gam^r_t,t = -(2*m^2 - m*r)/r^3
161
+ Gam^r_r,r = m/(2*m*r - r^2)
162
+ Gam^r_th,th = 2*m - r
163
+ Gam^r_ph,ph = (2*m - r)*sin(th)^2
164
+ Gam^th_r,th = 1/r
165
+ Gam^th_ph,ph = -cos(th)*sin(th)
166
+ Gam^ph_r,ph = 1/r
167
+ Gam^ph_th,ph = cos(th)/sin(th)
168
+
169
+
170
+ Available as extras, from other distributions
171
+ ---------------------------------------------
172
+
173
+ ``pip install "passagemath-symbolics[fricas]"``
174
+ 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>`_
175
+
176
+ ``pip install "passagemath-symbolics[giac]"``
177
+ 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>`_
178
+
179
+ ``pip install "passagemath-symbolics[primecount]"``
180
+ `Prime counting function <https://passagemath.org/docs/latest/html/en/reference/functions/sage/functions/prime_pi.html>`_
181
+ 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>`_
182
+
183
+ ``pip install "passagemath-symbolics[sympy]"``
184
+ Python library for symbolic mathematics / computer algebra system `SymPy <https://passagemath.org/docs/latest/html/en/reference/spkg/sympy.html>`_
185
+
186
+ ``pip install "passagemath-symbolics[plot]"``
187
+ Plotting facilities
@@ -0,0 +1,172 @@
1
+ passagemath_symbolics/__init__.py,sha256=8H5DSi07JR1Noj5uIPY5l8MMQDuuMuEo5SjZafXotTM,92
2
+ passagemath_symbolics/.dylibs/libgmp.10.dylib,sha256=4j6KCWYK9IQ9gdTRApS5jg4pdyai7E8c8WwgJQbcBwY,488712
3
+ sage/all__sagemath_symbolics.py,sha256=7VU5LgQiHSta1jKYzcUXGPcjUDXmTac6O7j5HGjxbuA,611
4
+ sage/dynamics/all__sagemath_symbolics.py,sha256=Z-jK_Ev4k3qjQmjvo2jnmk2YKhfltXlcFVTwPtDFW1s,254
5
+ sage/dynamics/complex_dynamics/mandel_julia_helper.pyx,sha256=B-TVw4ZO2CEBpZSmMU_YxyRT_bUaMDL9bnK7lylEgTE,39720
6
+ sage/dynamics/complex_dynamics/mandel_julia.py,sha256=GNKxyje1uuPxdM93LTLp7rnHLoKFTSP_D19qTq5VzrQ,30162
7
+ sage/dynamics/complex_dynamics/all.py,sha256=gCa1LQwVZesFkhAOkXaInJyKfDmc5QhmFnPCUJBpoRc,253
8
+ sage/dynamics/complex_dynamics/mandel_julia_helper.cpython-314t-darwin.so,sha256=0Kp-xszlCv9HmMu23tymipOpZV4rv5CmqKTPsYfV1Go,289992
9
+ sage/manifolds/catalog.py,sha256=nVZzkMvYk_8Q9RSm8m9Ei2MCLtgRGnZ2Gk2qO4gwRUY,14547
10
+ sage/manifolds/section_module.py,sha256=Og3iaxGYVIzbRXm3gji55CCADIex46BQamfG7j0ioMU,31405
11
+ sage/manifolds/vector_bundle_fiber_element.py,sha256=E-f9BWjsUl05_Aas-EG8q0W0QImnvO30-tBk5PEC3dU,3934
12
+ sage/manifolds/topological_submanifold.py,sha256=XIOCIDALm3CYtqWEKm0J2W1bhii5cmLdGr8dqnr-Elw,38857
13
+ sage/manifolds/manifold.py,sha256=EOL6qQevhOCDTeg0nV67jAlDzMZEPjX9izmVFnA6ljw,118470
14
+ sage/manifolds/calculus_method.py,sha256=xBAhOKdjsF8ZTDD_gf4y3bpLds8sl3axSPCksoptZOA,18439
15
+ sage/manifolds/vector_bundle.py,sha256=OiSdbCcj3dzUIxAnEjbeUIf5m9a5iSudNbAiPEvoHtM,51762
16
+ sage/manifolds/scalarfield.py,sha256=6qqve84n90Kp87Y7pxxaWgN2E6BeK_RrSIDKv2VQ5dA,132294
17
+ sage/manifolds/chart.py,sha256=xuuVI7VoX1mYEzeqLjDpGtJkQUB2tyQAjfjQuNAQ28I,157132
18
+ sage/manifolds/all.py,sha256=a2Ty6ZfqFBh07flJGaWuXsBgQv-cuVyd-vWsjM1bAO8,298
19
+ sage/manifolds/section.py,sha256=HdIDwoEmZzRJvHz87ajGX-m8N0QpDHRDBbCPskaoz6U,128340
20
+ sage/manifolds/vector_bundle_fiber.py,sha256=R-4P1M13Uqo1oDYu7gkyAaXzjFNGqFZ551r8gpBBwbc,11862
21
+ sage/manifolds/point.py,sha256=oq6X-uB8UKsgvsbVJwpSt4N3bUopDZsMN-gwBfJvnTY,38018
22
+ sage/manifolds/subset.py,sha256=Oemzkb0N1XGVLaSKc76DUCkle1ERf1YXvhI2tgmARfE,108336
23
+ sage/manifolds/continuous_map_image.py,sha256=9QtmQ7vsYgMxxAQSTolb1sfj3HvYpv38OmQuG0g25gU,6486
24
+ sage/manifolds/chart_func.py,sha256=nQypfDx-JiMV24QTj3ClbG5N1u6VLyL7QtcV4rNu43k,106333
25
+ sage/manifolds/manifold_homset.py,sha256=wS42470MIat8Mftaaa816ewitIqt5LchZoYrFPIIevg,16718
26
+ sage/manifolds/structure.py,sha256=n7iuVUjrxP_Wa5W6B5buPnCM1xMMuflqpluRnbPJYYk,7521
27
+ sage/manifolds/family.py,sha256=x-VWprD73Wa827NTmc3xZIQ_NGAJ2yRNvSKz828SXtk,10200
28
+ sage/manifolds/trivialization.py,sha256=9IRCHL3hzAF0WmvfWb6I4rn98ugZQOfs3UKDgVP_Tco,30636
29
+ sage/manifolds/continuous_map.py,sha256=nOG0UjRuRanelArfmfh2nAk2qSUkGGSHvT6rnhTukbI,91531
30
+ sage/manifolds/local_frame.py,sha256=HgIXhVLrFD_ItltX8LybsIEIz3MZ700RLHY40DDTK4o,63738
31
+ sage/manifolds/utilities.py,sha256=zkCgyHpXCmBblYx22aksqUtyFrq2XIjp9pPWGk0RANs,44785
32
+ sage/manifolds/operators.py,sha256=1wo0cQeMHuQi3chvPdxzVLR4gFO6QBkg263P1wYxZ78,12709
33
+ sage/manifolds/scalarfield_algebra.py,sha256=n-bpP2wCL8qXPFhkqxIDxdp9gGIVNB1659nY7y313BY,21944
34
+ sage/manifolds/differentiable/diff_map.py,sha256=Dfjp4h742OW2jFnsJLgl-pVJ8kjO8hBQgnQp-e0GquY,54146
35
+ sage/manifolds/differentiable/vectorfield_module.py,sha256=sLNDOIivRvdILFgWMwBzN1ybsoY6z69XmAdCKqzUDX4,95726
36
+ sage/manifolds/differentiable/tensorfield_module.py,sha256=5TEmwpkZgevVvJzAVAKYPiSPdzvoxs4OidRPAXMRM_U,39184
37
+ sage/manifolds/differentiable/mixed_form_algebra.py,sha256=R379NNVttzEAUCLX-JEalLTSlvSOcptNU2omEw4-0Yw,20707
38
+ sage/manifolds/differentiable/symplectic_form_test.py,sha256=ljOV1uaYMUJuPXvh37v6ljo3NIyH8Yma6rjDgLjr6No,8668
39
+ sage/manifolds/differentiable/manifold.py,sha256=2UUAehcJpd0v1l3vPCIgOQdzNfexMyZhGLSEIAU_xYk,172999
40
+ sage/manifolds/differentiable/vector_bundle.py,sha256=gNIl6D_PBB_P2XuAjsX278Cs92uRz0qn5K6X3bnC9oQ,69855
41
+ sage/manifolds/differentiable/tangent_space.py,sha256=VUQIArYk7Qm-g1myWQABQ7WduuMIfKY1DHhEkZpQnWk,14456
42
+ sage/manifolds/differentiable/affine_connection.py,sha256=MEwEvTkQ_ANP0hvOXZQCWM8HyMo2Mhuob0Nd2-WOqDc,100840
43
+ sage/manifolds/differentiable/pseudo_riemannian.py,sha256=-NatpjYDKRZ2R-tX7HutlZSFDQtKJRECQzcEA7dGOeA,29107
44
+ sage/manifolds/differentiable/differentiable_submanifold.py,sha256=i4A9Jw6YgX0I0U5_jJ77anfz30Y4GgSW1agMp6Lo0yg,12724
45
+ sage/manifolds/differentiable/tensorfield_paral.py,sha256=KloOftAnhoY-Xy1y7UVNJaW84xPAN9_8KPYpV10mYEQ,96658
46
+ sage/manifolds/differentiable/scalarfield.py,sha256=QKngbTwIyoo0GGeW0KtsoyCUwWnHfyogIpYsGuuNo2c,49749
47
+ sage/manifolds/differentiable/vectorfield.py,sha256=SydcutuiTfgm-wai0sUj8wHjQC-lYWFB5PVxOOKbsbE,67018
48
+ sage/manifolds/differentiable/chart.py,sha256=m1KSkE-0MWz90ytV9NgvdID35yq7VZm6t5qhewSTu-E,48751
49
+ sage/manifolds/differentiable/multivectorfield.py,sha256=0j3vrJDNzQxHcltGpFTeDNJgeQT7pvchUWZ4n_QD2tM,63925
50
+ sage/manifolds/differentiable/all.py,sha256=epni5fokgIOZhDyxkWHwa1nma0LKo6JRfWxRkMPzoqI,48
51
+ sage/manifolds/differentiable/diff_form_module.py,sha256=j4nwm45zVJVojct9cPMmOfmxT8arCXuYWmlYK2N-0QY,40809
52
+ sage/manifolds/differentiable/curve.py,sha256=8mMhT6Z59yvI6g9We9Iwtrs4e5qfrZsjPT_EuNWA8zs,41679
53
+ sage/manifolds/differentiable/levi_civita_connection.py,sha256=m6U-rh1oVZsTfByRAzyrfscWWPKJljLatSa4Z4vOZdc,36296
54
+ sage/manifolds/differentiable/metric.py,sha256=3OWEDrAtZzozVu4uNlVSOUSAeEMTtXISxOCr9NttJCg,125365
55
+ sage/manifolds/differentiable/integrated_curve.py,sha256=kIBpWwkVv_NWxIVAalv6JN3Diax_7TufVrkumpYEuGs,184660
56
+ sage/manifolds/differentiable/tensorfield_paral_test.py,sha256=39xMfbMTfcF3K883U-EWUMi_vins7hPVup9XBEBFoGY,574
57
+ sage/manifolds/differentiable/tangent_vector.py,sha256=W6AHGWWNHw0vIabZICXKPJoMo-LnMRQAXW2ETwY1NYg,23932
58
+ sage/manifolds/differentiable/characteristic_cohomology_class.py,sha256=YFW_471TtUgDprLJ_3SwnxHewkKPBPUwkt131FARHKg,67530
59
+ sage/manifolds/differentiable/automorphismfield.py,sha256=iy43ljxTvIp550kYU3Lvpn_Wr4o87dkrq720VW1UiAY,57111
60
+ sage/manifolds/differentiable/manifold_homset.py,sha256=JuqWWYHyvx9gkWjxswCoY-7e_PZXqiIl8bhw8Aof1bo,74345
61
+ sage/manifolds/differentiable/degenerate.py,sha256=AyWuPT7iosRYNpXc07Y8b6ChlPtiU63zXDvrw5RPWgM,25185
62
+ sage/manifolds/differentiable/diff_form.py,sha256=QqQm5Oe4HWjmMv0MMcA8Kvxcq1A1xcsj_BurJMFRRTs,66535
63
+ sage/manifolds/differentiable/degenerate_submanifold.py,sha256=EUaN-r4ENmrb9smlpA0le8t3_vc0PCzkioIP_ozztP4,74027
64
+ sage/manifolds/differentiable/mixed_form.py,sha256=JNczN-bpVCK8s7n6dieBXPW9HFwFq_8bMaHJ_Ds59Sc,59423
65
+ sage/manifolds/differentiable/vectorframe.py,sha256=s5zX3bVkNxulLGsDicdZBUPlpzOjpUxRt7TXR7rQFmc,76719
66
+ sage/manifolds/differentiable/multivector_module.py,sha256=jbmISNskCCtQCqqgTp9nxHNTKsWORKSawWECys5A_OQ,30400
67
+ sage/manifolds/differentiable/bundle_connection.py,sha256=c72hBIUhcimaJk44Kk2t4D-agSu0FL8tQSpyKfdyZ4I,58444
68
+ sage/manifolds/differentiable/poisson_tensor.py,sha256=GjxeOi0QWQOXcwKm22rw8HlY2Eezi93yow2eUhc4jNs,9223
69
+ sage/manifolds/differentiable/pseudo_riemannian_submanifold.py,sha256=5veqo3c1oxluX6gl3goallopKY-fBp59UKrcwbNkm7Q,80397
70
+ sage/manifolds/differentiable/symplectic_form.py,sha256=FDS-ZkNXGSeNj7XiJX4HYwu7M8qgM21Ek0r8xbBCq-4,33141
71
+ sage/manifolds/differentiable/de_rham_cohomology.py,sha256=iS1urzZ7Iy14uXqFsGatjlY6ijjbUsmCVO_7lX_hblc,17369
72
+ sage/manifolds/differentiable/automorphismfield_group.py,sha256=zIz-yyVW732w3xJiIjYjSPTKLx_eXYbp1ro2UCFnT88,23279
73
+ sage/manifolds/differentiable/tensorfield.py,sha256=N3UW5IXDqrS0eflfhCHMLLA1XEEu_ZyB4_omFNGLYXc,195460
74
+ sage/manifolds/differentiable/scalarfield_algebra.py,sha256=U_6FMU9j59zAppeyQQZ3IBrSvYO4KhqLvtSRSYAPtBk,16188
75
+ sage/manifolds/differentiable/examples/real_line.py,sha256=-3NLvbmrtaMLg9vr8vV4C4Wqs6RVNZ4YQhm0_W7sF-A,30816
76
+ sage/manifolds/differentiable/examples/all.py,sha256=epni5fokgIOZhDyxkWHwa1nma0LKo6JRfWxRkMPzoqI,48
77
+ sage/manifolds/differentiable/examples/symplectic_space.py,sha256=7O6FQNQNnyoICeRI8LZkWjbn0jz4f-Vi5bYfERuHfiY,7335
78
+ sage/manifolds/differentiable/examples/sphere.py,sha256=Oi2Vc_SjW_t6QMB1aJl-cygceOo18MKC7gOew_oYw9g,46507
79
+ sage/manifolds/differentiable/examples/euclidean.py,sha256=a-pNVtAmUz_mUcykuvE-8plvW1MYgT1DF9LOTO23-w8,96998
80
+ sage/manifolds/differentiable/examples/symplectic_space_test.py,sha256=k6ahy1QW2OZoSz40nHn4REwZ2iE7fb9rbbOy4-uTxZg,1193
81
+ sage/manifolds/subsets/pullback.py,sha256=7V19RrKHqTultL2gI4hBfTvgnDUbABujtyhHaHup0nQ,35976
82
+ sage/manifolds/subsets/all.py,sha256=epni5fokgIOZhDyxkWHwa1nma0LKo6JRfWxRkMPzoqI,48
83
+ sage/manifolds/subsets/closure.py,sha256=EnsAVJgP9adtAlJ9jQXrpG_bIx_HU1hsmgwjdve-I6o,5148
84
+ sage/ext_data/kenzo/S4.txt,sha256=iSXavQqy7ep6HFOWnnsHtqoDhL4Hu3s1SpsaUKbizWs,272
85
+ sage/ext_data/kenzo/CP4.txt,sha256=WXb63Qce3f9Z3Q6K3_zkI0W4-cHBM93XMn7K5bNQD3U,640878
86
+ sage/ext_data/kenzo/CP2.txt,sha256=DYHV8ETaavPvch7t5KdEuGhEqoOAozD7NVAzFGbR3ws,1757
87
+ sage/ext_data/kenzo/CP3.txt,sha256=zyCb_0Lh5zAUrK_RJ-wFdCckivlMRyIEnN9xVg1sDsE,27973
88
+ sage/ext_data/kenzo/README.txt,sha256=SZywXyUDRE8JUt2_JajOYslQiEBSkkB5-14jtxPIt08,1912
89
+ sage/ext_data/magma/spec,sha256=2760-LguNwtG2-MSXIAJdummsIdj0hLKapEp6rQAfSI,49
90
+ sage/ext_data/magma/latex/latex.spec,sha256=1ADt_LrQugQ9PYGBekgG206-18fiWlO3VEuqGZ5qEOs,7
91
+ sage/ext_data/magma/latex/latex.m,sha256=7tGYiKjzfcz2c5_vReltFoSgrVYPy7tzDi6Xj6VrBtg,22074
92
+ sage/ext_data/magma/sage/basic.m,sha256=GESxm4QitS3U_q06HSyLZ6_SvSMgU3icqjJzQRDUzuQ,10358
93
+ sage/ext_data/magma/sage/sage.spec,sha256=yvGsKtKYjoAa05CpOHooD6n9q0OfS8lUGauaGyaKvaw,8
94
+ sage/ext/all__sagemath_symbolics.py,sha256=epni5fokgIOZhDyxkWHwa1nma0LKo6JRfWxRkMPzoqI,48
95
+ sage/libs/all__sagemath_symbolics.py,sha256=WoXEdP6h9s0Q7w1L8Mke0cnpB3Mov9QNJ8TTWs-SLdU,130
96
+ sage/rings/all__sagemath_symbolics.py,sha256=ntPE3dUurYc03iRDxLmFMe-80Uwy8m8CP7oDluQ4X6I,136
97
+ sage/rings/asymptotic/asymptotic_ring.py,sha256=N9V-lGD9jq2Rk3Lm0UiGGGwlGXAucVCmn1iDPBpoxEY,168540
98
+ sage/rings/asymptotic/asymptotic_expansion_generators.py,sha256=ncHYhJxcwngigCJy5a5UMOSiTkXwNopY_iClLneQvb0,59597
99
+ sage/rings/asymptotic/all.py,sha256=AmZKfCrLYpBtbIhKE8Eawqa102tq75wBJ7fHWscltWY,287
100
+ sage/rings/asymptotic/term_monoid.py,sha256=GaEC1SryeFH97_OMvwpC4CURa188CpZtKUOCFeCM2Jo,191839
101
+ sage/rings/asymptotic/asymptotics_multivariate_generating_functions.py,sha256=jNmornSwQOZgBde79dW2IcHqRZH4JArU4gLAhD9ZIt8,163458
102
+ sage/rings/asymptotic/growth_group_cartesian.py,sha256=xa3TlvYqmPdZOnIY3Q_PyDLSjA7ueSu8AkgNY6sNDbU,50761
103
+ sage/rings/asymptotic/growth_group.py,sha256=a6-K2uXx4E82BjtoBv-rLeYrQpjANv5_JF4gDYziW_Y,178662
104
+ sage/rings/function_field/all__sagemath_symbolics.py,sha256=WF3Hs4ZfiQ2Tx0SwWTQFmt5TENkrXB9vLJSZ8oDrfFc,110
105
+ sage/rings/polynomial/all__sagemath_symbolics.py,sha256=epni5fokgIOZhDyxkWHwa1nma0LKo6JRfWxRkMPzoqI,48
106
+ sage/symbolic/callable.py,sha256=rTsD_FC1ujXm3RRS4jygBKf80-Ee2svQ8H1r2EJyUL4,14146
107
+ sage/symbolic/relation.py,sha256=4ALO4NvxBtrNz2MX9L4_lILB3yqeNrSyshxq_3IZ0Qg,62754
108
+ sage/symbolic/units.py,sha256=3fU34iTHf4QwXMJgWnLmSnOYPXwqFhoCdMrN8cEm7c8,64125
109
+ sage/symbolic/benchmark.py,sha256=KzugX4QAE7CD2v5V1rd3qiJ6eEwSXaQWkQmJxcSERPk,3471
110
+ sage/symbolic/ring.pxd,sha256=if4x_KQl4sQCMIJQ1t77EMkthZZK1hLYFqr5aZ_h-oE,155
111
+ sage/symbolic/constants.py,sha256=U1yBUZETb5zdNaKkI7CFo5-D1dv2xsZk9Q4ZMd_fHys,34702
112
+ sage/symbolic/symengine.py,sha256=rGN1KLDUt4IabCODYUqcu4J-iuhTJNslkaqIuAyJz5Y,523
113
+ sage/symbolic/maxima_wrapper.py,sha256=o97j1MNlJvFr2zPqX-ZdNyV6JMpcMrgTVY8V2osRlqw,5400
114
+ sage/symbolic/all.py,sha256=mdxP7KxauUxxdBkOv6M7sSHy7KdbLGbKUJVSk48AUdc,617
115
+ sage/symbolic/random_tests.py,sha256=QlkP8fJ1SCEdJTZTgnfFUsv8PC4sUMkw5AA2nOibe8g,17229
116
+ sage/symbolic/ring.cpython-314t-darwin.so,sha256=4RF84PmzaPi_GBIXDskCCC2zVeMOOsphznS-wfCVLaM,244200
117
+ sage/symbolic/expression_conversion_algebraic.py,sha256=B7I_mvZeL8tCaLGjr5g_PtgCueonzllcLPYIvLMaNNU,11478
118
+ sage/symbolic/subring.py,sha256=u1oXLcK6UfGtRe_cKu3vkMj_kR85aZkOwMpG-5MVGBA,32161
119
+ sage/symbolic/ring.pyx,sha256=AB0EbFMyL6FFZafKPVbor4Eix_9YBywmUYwpCI-ZFXo,44254
120
+ sage/symbolic/expression_conversions.py,sha256=cmI76bxe9dP2chi9nSkuZXpgdaYDq2iA2Y_GePSk2tY,59465
121
+ sage/symbolic/expression_conversion_sympy.py,sha256=DaqT05xkLKm2ApqQtu21fFLUS1MYcJBnV6JRRyRmOBk,9703
122
+ sage/symbolic/tests.py,sha256=F7Hu4ARcGl9Wf3Kd8MsUYZbkT6iWUgtkhcUeGO_y968,1265
123
+ sage/symbolic/operators.py,sha256=3U134nD-ht0oUwdbyxjVqzNKB2b6Kx9ciOMRZGscU_8,8033
124
+ sage/symbolic/complexity_measures.py,sha256=60gdcnG2KOYVpwbBhtd5C8YAPYmY8fBZiGE3NPJEv1U,854
125
+ sage/symbolic/function_factory.py,sha256=UetBduWrPo5tS0k8fbi4d53UwvCPftkoj6M7uaq0wic,12491
126
+ sage/symbolic/assumptions.py,sha256=CRxLjv9_wJnCP622b_Y2U3MQ-2xK5Hsuj5DVML1XO3o,30657
127
+ sage/symbolic/integration/integral.py,sha256=vb1QNGfwKWBwkgbjCrGg5PdgSeReFNplI51AU9AGlLk,38285
128
+ sage/symbolic/integration/all.py,sha256=epni5fokgIOZhDyxkWHwa1nma0LKo6JRfWxRkMPzoqI,48
129
+ sage/symbolic/integration/external.py,sha256=z4iFKzg9uIApfcaggVFQyOiaxaBNXDIM03u91Y9CM_8,9596
130
+ sage/geometry/all__sagemath_symbolics.py,sha256=p1mkLttIsl4jfOrSdk2us4LdG6bBIGV2RlzoVqcTzNU,252
131
+ sage/geometry/riemannian_manifolds/all.py,sha256=jpQfGOM-5kuQKfiSCovSB0HGSaPHO0XCQ1Ivy7e4xtA,315
132
+ sage/geometry/riemannian_manifolds/parametrized_surface3d.py,sha256=MecVYNBfjGxYyntX08qszHfHBy8zxkeysDQh_Sf6bYQ,65279
133
+ sage/geometry/riemannian_manifolds/surface3d_generators.py,sha256=3tR471uQVHX-MuLuQOmdPlu6M1ZGf2cCavAxI9g-SWE,15783
134
+ sage/geometry/hyperbolic_space/hyperbolic_isometry.py,sha256=RoIrzlEOjOOhBnTrST-aeVPnKsSM3Ckm3ND6WjpwH8w,34992
135
+ sage/geometry/hyperbolic_space/hyperbolic_coercion.py,sha256=hC2XqNNIEwvP-AGgld3Qys0vr3B-zwUu6cU1tuE2eG4,24117
136
+ sage/geometry/hyperbolic_space/hyperbolic_interface.py,sha256=oqzyXkE0w6XGwlpQyNhlmYo2KhNeBMsfDL9hIPBDovc,6323
137
+ sage/geometry/hyperbolic_space/all.py,sha256=91X2KwD_liHakKzxraNoZiKcMQnzj0RXENrwFd6usfs,197
138
+ sage/geometry/hyperbolic_space/hyperbolic_constants.py,sha256=69CN4HGi2xAVFzydIiyrGl0JoxNwAL8frBAuEeAdDnY,166
139
+ sage/geometry/hyperbolic_space/hyperbolic_point.py,sha256=bJ6i9GSOMriSAxHlk-7EAqN6ImZYOHZineY_6wBGI0c,20446
140
+ sage/geometry/hyperbolic_space/hyperbolic_model.py,sha256=_t0Bt0sNak07hcHv0w-oIyAP0TmKCSKRNxygFkQWjjE,49734
141
+ sage/geometry/hyperbolic_space/hyperbolic_geodesic.py,sha256=IpbxoBXUQA-Wb7HeXiGKj1KfvZF32DJ3qoSEpiRro5E,84221
142
+ sage/calculus/var.cpython-314t-darwin.so,sha256=6Wxvqz6dpCK-PB0DpJ168D117f6DQLIVOUCrEyzbjho,63792
143
+ sage/calculus/predefined.py,sha256=arFvCCzbcUpRAuomzZQd43uZW67aAnWStqzOvFESpWo,764
144
+ sage/calculus/desolvers.py,sha256=qrFosFD3B8iT1gW7wrmp7Iv_xynR6R-ZnZlVVVMA3qk,69154
145
+ sage/calculus/var.pyx,sha256=gZ7V6rxl99BnNcxutYNCxEksUCPXppYjq0eqfMjkEoA,12963
146
+ sage/calculus/all.py,sha256=ltDen-9IxxSS3-wIXyAVK1tbvY_BgTQt1x7Zp2c22bA,751
147
+ sage/calculus/calculus.py,sha256=5_bkNUGrs2SE2eoy-mskJ2MHu1qu5D5mD6-7esLX160,88897
148
+ sage/calculus/tests.py,sha256=awOgbDYmTPzGfF75ajvJ_KAI5os4ZjlQH9mniB_BMuw,6538
149
+ sage/modules/vector_symbolic_dense.py,sha256=wovLED1rrmyG24nHneTChC86zrf54J4nIR7yv7NXE3w,4140
150
+ sage/modules/all__sagemath_symbolics.py,sha256=epni5fokgIOZhDyxkWHwa1nma0LKo6JRfWxRkMPzoqI,48
151
+ sage/modules/vector_callable_symbolic_dense.py,sha256=buotHK7lRiE_HdmxZkSvcSiqYxFx5hEnDq6bY4QZL1U,3348
152
+ sage/modules/vector_symbolic_sparse.py,sha256=kso025T9x4oYpE-vZg0fyRnUyA6pMHtzlNeygyDXu7M,4290
153
+ sage/matrix/matrix_symbolic_dense.cpython-314t-darwin.so,sha256=-oZzoM4qUbA6rdBWWOeRM0MQtrT17C-U83m7lYwnJD4,175440
154
+ sage/matrix/matrix_symbolic_sparse.cpython-314t-darwin.so,sha256=LjTulApWOP2M-382Y6I9qJ6eRVh0bZ6-dP5le9VzXwg,181264
155
+ sage/matrix/matrix_symbolic_sparse.pxd,sha256=lQRrk-R4LsOTHgDCRSU-b-O39ivu4Om0hymYyno1SyQ,186
156
+ sage/matrix/matrix_symbolic_dense.pyx,sha256=bHIr8iMkeFPPEcZXwIfXmJcdtHqpEQ_y5CVvRgcG7y8,33690
157
+ sage/matrix/all__sagemath_symbolics.py,sha256=epni5fokgIOZhDyxkWHwa1nma0LKo6JRfWxRkMPzoqI,48
158
+ sage/matrix/matrix_symbolic_dense.pxd,sha256=YYX59lRZGQGBzO9wdwSOx_7zU_Un96V2aa_3ZAk1udk,182
159
+ sage/matrix/matrix_symbolic_sparse.pyx,sha256=PcEcwEwY6EPe8Lm39YEwJcglQAipmBPWpoeJz6NXQ8c,35063
160
+ sage/interfaces/sympy_wrapper.py,sha256=adnxg9zTvZosBowd4muQhauU50B0bNqIXDmET7-lEKs,5683
161
+ sage/interfaces/maple.py,sha256=9XgDNIdIBNqGo6KopELMS2MI_xxgtIp2vPZOt5kJV7k,44155
162
+ sage/interfaces/mathematica.py,sha256=FuvbYUVjZ8PQdeVPOhRADIC4IvzAv29REuIo0TWqUuA,46928
163
+ sage/interfaces/all__sagemath_symbolics.py,sha256=epni5fokgIOZhDyxkWHwa1nma0LKo6JRfWxRkMPzoqI,48
164
+ sage/interfaces/sympy.py,sha256=f2MS0xbSO8CHunNCyjZOkKImGI3ve0VA98HBGj0JM40,44683
165
+ sage/interfaces/mathics.py,sha256=9q-YB5HtPjjC5EmpKXTKMwrAiypI1RjVpYmuU8nTZfk,40344
166
+ sage/interfaces/magma_free.py,sha256=3Pje2G7sq8IzhpiZvy2OtjnRIDwbUw4JZEilw63Svpo,2986
167
+ sage/interfaces/tides.py,sha256=InI2qoCFXLLBoeU4Q8Xkg0KvKqH9DI4X1rLV-MhzdAE,31592
168
+ sage/interfaces/magma.py,sha256=jlf6D6pSkSEkyBmdsqQJop4DxRgoYskHw_8xZBgkes0,100023
169
+ passagemath_symbolics-10.6.40.dist-info/RECORD,,
170
+ passagemath_symbolics-10.6.40.dist-info/WHEEL,sha256=RVsjh5yijuLhpAeoj1rcJ6CnX6JK7wyaBksB-qUN_2E,155
171
+ passagemath_symbolics-10.6.40.dist-info/top_level.txt,sha256=Ctv_upqOBoMDZeIpWpqltSRnvHcqToMxLE5tAacruSY,28
172
+ passagemath_symbolics-10.6.40.dist-info/METADATA,sha256=cebT-de5DKaD9i8ApFSbhjqDW0BF8kC1dQ0jAbDD9J0,8459
@@ -0,0 +1,6 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: false
4
+ Tag: cp314-cp314t-macosx_13_0_x86_64
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)