passagemath-ntl 10.6.33__cp313-cp313-musllinux_1_2_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-ntl might be problematic. Click here for more details.

Files changed (163) hide show
  1. passagemath_ntl-10.6.33.dist-info/METADATA +122 -0
  2. passagemath_ntl-10.6.33.dist-info/RECORD +163 -0
  3. passagemath_ntl-10.6.33.dist-info/WHEEL +5 -0
  4. passagemath_ntl-10.6.33.dist-info/top_level.txt +2 -0
  5. passagemath_ntl.libs/libgcc_s-0cd532bd.so.1 +0 -0
  6. passagemath_ntl.libs/libgf2x-9e30c3e3.so.3.0.0 +0 -0
  7. passagemath_ntl.libs/libgmp-0e7fc84e.so.10.5.0 +0 -0
  8. passagemath_ntl.libs/libmpfi-2153e8c2.so.0.0.0 +0 -0
  9. passagemath_ntl.libs/libmpfr-aaecbfc0.so.6.2.1 +0 -0
  10. passagemath_ntl.libs/libntl-26885ca2.so.44.0.1 +0 -0
  11. passagemath_ntl.libs/libstdc++-5d72f927.so.6.0.33 +0 -0
  12. sage/all__sagemath_ntl.py +7 -0
  13. sage/libs/all__sagemath_ntl.py +3 -0
  14. sage/libs/mpfi/__init__.pxd +287 -0
  15. sage/libs/mpfi/types.pxd +10 -0
  16. sage/libs/ntl/GF2.pxd +18 -0
  17. sage/libs/ntl/GF2E.pxd +28 -0
  18. sage/libs/ntl/GF2EX.pxd +12 -0
  19. sage/libs/ntl/GF2X.pxd +81 -0
  20. sage/libs/ntl/ZZ.pxd +93 -0
  21. sage/libs/ntl/ZZX.pxd +85 -0
  22. sage/libs/ntl/ZZ_p.pxd +28 -0
  23. sage/libs/ntl/ZZ_pE.pxd +37 -0
  24. sage/libs/ntl/ZZ_pEX.pxd +106 -0
  25. sage/libs/ntl/ZZ_pX.pxd +122 -0
  26. sage/libs/ntl/__init__.py +4 -0
  27. sage/libs/ntl/all.py +72 -0
  28. sage/libs/ntl/conversion.pxd +106 -0
  29. sage/libs/ntl/convert.cpython-313-x86_64-linux-musl.so +0 -0
  30. sage/libs/ntl/convert.pxd +7 -0
  31. sage/libs/ntl/convert.pyx +38 -0
  32. sage/libs/ntl/decl.pxi +18 -0
  33. sage/libs/ntl/error.cpython-313-x86_64-linux-musl.so +0 -0
  34. sage/libs/ntl/error.pyx +63 -0
  35. sage/libs/ntl/lzz_p.pxd +20 -0
  36. sage/libs/ntl/lzz_pX.pxd +59 -0
  37. sage/libs/ntl/mat_GF2.pxd +30 -0
  38. sage/libs/ntl/mat_GF2E.pxd +30 -0
  39. sage/libs/ntl/mat_ZZ.pxd +59 -0
  40. sage/libs/ntl/misc.pxi +33 -0
  41. sage/libs/ntl/ntl_GF2.cpython-313-x86_64-linux-musl.so +0 -0
  42. sage/libs/ntl/ntl_GF2.pxd +5 -0
  43. sage/libs/ntl/ntl_GF2.pyx +281 -0
  44. sage/libs/ntl/ntl_GF2E.cpython-313-x86_64-linux-musl.so +0 -0
  45. sage/libs/ntl/ntl_GF2E.pxd +8 -0
  46. sage/libs/ntl/ntl_GF2E.pyx +488 -0
  47. sage/libs/ntl/ntl_GF2EContext.cpython-313-x86_64-linux-musl.so +0 -0
  48. sage/libs/ntl/ntl_GF2EContext.pxd +9 -0
  49. sage/libs/ntl/ntl_GF2EContext.pyx +134 -0
  50. sage/libs/ntl/ntl_GF2EX.cpython-313-x86_64-linux-musl.so +0 -0
  51. sage/libs/ntl/ntl_GF2EX.pxd +10 -0
  52. sage/libs/ntl/ntl_GF2EX.pyx +251 -0
  53. sage/libs/ntl/ntl_GF2X.cpython-313-x86_64-linux-musl.so +0 -0
  54. sage/libs/ntl/ntl_GF2X.pxd +5 -0
  55. sage/libs/ntl/ntl_GF2X.pyx +771 -0
  56. sage/libs/ntl/ntl_GF2X_linkage.pxi +404 -0
  57. sage/libs/ntl/ntl_ZZ.cpython-313-x86_64-linux-musl.so +0 -0
  58. sage/libs/ntl/ntl_ZZ.pxd +7 -0
  59. sage/libs/ntl/ntl_ZZ.pyx +541 -0
  60. sage/libs/ntl/ntl_ZZX.cpython-313-x86_64-linux-musl.so +0 -0
  61. sage/libs/ntl/ntl_ZZX.pxd +7 -0
  62. sage/libs/ntl/ntl_ZZX.pyx +1206 -0
  63. sage/libs/ntl/ntl_ZZ_p.cpython-313-x86_64-linux-musl.so +0 -0
  64. sage/libs/ntl/ntl_ZZ_p.pxd +10 -0
  65. sage/libs/ntl/ntl_ZZ_p.pyx +509 -0
  66. sage/libs/ntl/ntl_ZZ_pContext.cpython-313-x86_64-linux-musl.so +0 -0
  67. sage/libs/ntl/ntl_ZZ_pContext.pxd +22 -0
  68. sage/libs/ntl/ntl_ZZ_pContext.pyx +201 -0
  69. sage/libs/ntl/ntl_ZZ_pE.cpython-313-x86_64-linux-musl.so +0 -0
  70. sage/libs/ntl/ntl_ZZ_pE.pxd +11 -0
  71. sage/libs/ntl/ntl_ZZ_pE.pyx +349 -0
  72. sage/libs/ntl/ntl_ZZ_pEContext.cpython-313-x86_64-linux-musl.so +0 -0
  73. sage/libs/ntl/ntl_ZZ_pEContext.pxd +23 -0
  74. sage/libs/ntl/ntl_ZZ_pEContext.pyx +226 -0
  75. sage/libs/ntl/ntl_ZZ_pEX.cpython-313-x86_64-linux-musl.so +0 -0
  76. sage/libs/ntl/ntl_ZZ_pEX.pxd +10 -0
  77. sage/libs/ntl/ntl_ZZ_pEX.pyx +1255 -0
  78. sage/libs/ntl/ntl_ZZ_pEX_linkage.pxi +420 -0
  79. sage/libs/ntl/ntl_ZZ_pX.cpython-313-x86_64-linux-musl.so +0 -0
  80. sage/libs/ntl/ntl_ZZ_pX.pxd +17 -0
  81. sage/libs/ntl/ntl_ZZ_pX.pyx +1532 -0
  82. sage/libs/ntl/ntl_lzz_p.cpython-313-x86_64-linux-musl.so +0 -0
  83. sage/libs/ntl/ntl_lzz_p.pxd +8 -0
  84. sage/libs/ntl/ntl_lzz_p.pyx +440 -0
  85. sage/libs/ntl/ntl_lzz_pContext.cpython-313-x86_64-linux-musl.so +0 -0
  86. sage/libs/ntl/ntl_lzz_pContext.pxd +7 -0
  87. sage/libs/ntl/ntl_lzz_pContext.pyx +137 -0
  88. sage/libs/ntl/ntl_lzz_pX.cpython-313-x86_64-linux-musl.so +0 -0
  89. sage/libs/ntl/ntl_lzz_pX.pxd +10 -0
  90. sage/libs/ntl/ntl_lzz_pX.pyx +902 -0
  91. sage/libs/ntl/ntl_mat_GF2.cpython-313-x86_64-linux-musl.so +0 -0
  92. sage/libs/ntl/ntl_mat_GF2.pxd +8 -0
  93. sage/libs/ntl/ntl_mat_GF2.pyx +612 -0
  94. sage/libs/ntl/ntl_mat_GF2E.cpython-313-x86_64-linux-musl.so +0 -0
  95. sage/libs/ntl/ntl_mat_GF2E.pxd +10 -0
  96. sage/libs/ntl/ntl_mat_GF2E.pyx +752 -0
  97. sage/libs/ntl/ntl_mat_ZZ.cpython-313-x86_64-linux-musl.so +0 -0
  98. sage/libs/ntl/ntl_mat_ZZ.pxd +6 -0
  99. sage/libs/ntl/ntl_mat_ZZ.pyx +1523 -0
  100. sage/libs/ntl/ntl_tools.pxd +3 -0
  101. sage/libs/ntl/ntlwrap.h +53 -0
  102. sage/libs/ntl/ntlwrap_impl.h +743 -0
  103. sage/libs/ntl/types.pxd +157 -0
  104. sage/libs/ntl/vec_GF2.pxd +26 -0
  105. sage/libs/ntl/vec_GF2E.pxd +2 -0
  106. sage/matrix/all__sagemath_ntl.py +1 -0
  107. sage/matrix/matrix_modn_dense_double.pxd +10 -0
  108. sage/matrix/matrix_modn_dense_float.pxd +9 -0
  109. sage/matrix/matrix_modn_dense_template.pxi +3257 -0
  110. sage/matrix/matrix_modn_dense_template_header.pxi +15 -0
  111. sage/matrix/matrix_modn_sparse.pxd +8 -0
  112. sage/misc/all__sagemath_ntl.py +1 -0
  113. sage/rings/all__sagemath_ntl.py +7 -0
  114. sage/rings/bernmm.cpython-313-x86_64-linux-musl.so +0 -0
  115. sage/rings/bernmm.pyx +161 -0
  116. sage/rings/bernoulli_mod_p.cpython-313-x86_64-linux-musl.so +0 -0
  117. sage/rings/bernoulli_mod_p.pyx +313 -0
  118. sage/rings/finite_rings/all__sagemath_ntl.py +1 -0
  119. sage/rings/finite_rings/finite_field_ntl_gf2e.py +305 -0
  120. sage/rings/finite_rings/residue_field_ntl_gf2e.cpython-313-x86_64-linux-musl.so +0 -0
  121. sage/rings/finite_rings/residue_field_ntl_gf2e.pyx +140 -0
  122. sage/rings/padics/all__sagemath_ntl.py +5 -0
  123. sage/rings/padics/padic_ZZ_pX_CA_element.cpython-313-x86_64-linux-musl.so +0 -0
  124. sage/rings/padics/padic_ZZ_pX_CA_element.pxd +25 -0
  125. sage/rings/padics/padic_ZZ_pX_CA_element.pyx +2368 -0
  126. sage/rings/padics/padic_ZZ_pX_CR_element.cpython-313-x86_64-linux-musl.so +0 -0
  127. sage/rings/padics/padic_ZZ_pX_CR_element.pxd +33 -0
  128. sage/rings/padics/padic_ZZ_pX_CR_element.pyx +3277 -0
  129. sage/rings/padics/padic_ZZ_pX_FM_element.cpython-313-x86_64-linux-musl.so +0 -0
  130. sage/rings/padics/padic_ZZ_pX_FM_element.pxd +12 -0
  131. sage/rings/padics/padic_ZZ_pX_FM_element.pyx +1739 -0
  132. sage/rings/padics/padic_ZZ_pX_element.cpython-313-x86_64-linux-musl.so +0 -0
  133. sage/rings/padics/padic_ZZ_pX_element.pxd +6 -0
  134. sage/rings/padics/padic_ZZ_pX_element.pyx +919 -0
  135. sage/rings/padics/padic_ext_element.cpython-313-x86_64-linux-musl.so +0 -0
  136. sage/rings/padics/padic_ext_element.pxd +38 -0
  137. sage/rings/padics/padic_ext_element.pyx +512 -0
  138. sage/rings/padics/pow_computer_ext.cpython-313-x86_64-linux-musl.so +0 -0
  139. sage/rings/padics/pow_computer_ext.pxd +107 -0
  140. sage/rings/padics/pow_computer_ext.pyx +2401 -0
  141. sage/rings/polynomial/all__sagemath_ntl.py +1 -0
  142. sage/rings/polynomial/evaluation_ntl.cpython-313-x86_64-linux-musl.so +0 -0
  143. sage/rings/polynomial/evaluation_ntl.pxd +7 -0
  144. sage/rings/polynomial/evaluation_ntl.pyx +70 -0
  145. sage/rings/polynomial/polynomial_gf2x.cpython-313-x86_64-linux-musl.so +0 -0
  146. sage/rings/polynomial/polynomial_gf2x.pxd +10 -0
  147. sage/rings/polynomial/polynomial_gf2x.pyx +364 -0
  148. sage/rings/polynomial/polynomial_integer_dense_ntl.cpython-313-x86_64-linux-musl.so +0 -0
  149. sage/rings/polynomial/polynomial_integer_dense_ntl.pxd +8 -0
  150. sage/rings/polynomial/polynomial_integer_dense_ntl.pyx +1128 -0
  151. sage/rings/polynomial/polynomial_modn_dense_ntl.cpython-313-x86_64-linux-musl.so +0 -0
  152. sage/rings/polynomial/polynomial_modn_dense_ntl.pxd +36 -0
  153. sage/rings/polynomial/polynomial_modn_dense_ntl.pyx +2049 -0
  154. sage/rings/polynomial/polynomial_template.pxi +842 -0
  155. sage/rings/polynomial/polynomial_template_header.pxi +11 -0
  156. sage/rings/polynomial/polynomial_zz_pex.cpython-313-x86_64-linux-musl.so +0 -0
  157. sage/rings/polynomial/polynomial_zz_pex.pxd +12 -0
  158. sage/rings/polynomial/polynomial_zz_pex.pyx +778 -0
  159. sage/rings/real_mpfi.pxd +50 -0
  160. sage/schemes/all__sagemath_ntl.py +1 -0
  161. sage/schemes/hyperelliptic_curves/all__sagemath_ntl.py +1 -0
  162. sage/schemes/hyperelliptic_curves/hypellfrob.cpython-313-x86_64-linux-musl.so +0 -0
  163. sage/schemes/hyperelliptic_curves/hypellfrob.pyx +252 -0
@@ -0,0 +1,122 @@
1
+ Metadata-Version: 2.4
2
+ Name: passagemath-ntl
3
+ Version: 10.6.33
4
+ Summary: passagemath: Computational Number Theory with NTL
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: cysignals<1.12.4; sys_platform == "win32"
33
+ Requires-Dist: cysignals!=1.12.0,>=1.11.2
34
+ Requires-Dist: memory_allocator
35
+ Requires-Dist: passagemath-environment~=10.6.33.0
36
+ Requires-Dist: passagemath-categories~=10.6.33.0
37
+ Provides-Extra: test
38
+ Requires-Dist: passagemath-repl; extra == "test"
39
+ Requires-Dist: passagemath-modules; extra == "test"
40
+
41
+ ==============================================================================
42
+ passagemath: Computational Number Theory with NTL
43
+ ==============================================================================
44
+
45
+ `passagemath <https://github.com/passagemath/passagemath>`__ is open
46
+ source mathematical software in Python, released under the GNU General
47
+ Public Licence GPLv2+.
48
+
49
+ It is a fork of `SageMath <https://www.sagemath.org/>`__, which has been
50
+ developed 2005-2025 under the motto “Creating a Viable Open Source
51
+ Alternative to Magma, Maple, Mathematica, and MATLAB”.
52
+
53
+ The passagemath fork uses the motto "Creating a Free Passage Between the
54
+ Scientific Python Ecosystem and Mathematical Software Communities."
55
+ It was created in October 2024 with the following goals:
56
+
57
+ - providing modularized installation with pip,
58
+ - establishing first-class membership in the scientific Python
59
+ ecosystem,
60
+ - giving `clear attribution of upstream
61
+ projects <https://groups.google.com/g/sage-devel/c/6HO1HEtL1Fs/m/G002rPGpAAAJ>`__,
62
+ - providing independently usable Python interfaces to upstream
63
+ libraries,
64
+ - offering `platform portability and integration testing
65
+ services <https://github.com/passagemath/passagemath/issues/704>`__
66
+ to upstream projects,
67
+ - inviting collaborations with upstream projects,
68
+ - `building a professional, respectful, inclusive
69
+ community <https://groups.google.com/g/sage-devel/c/xBzaINHWwUQ>`__,
70
+ - `empowering Sage users to participate in the scientific Python ecosystem
71
+ <https://github.com/passagemath/passagemath/issues/248>`__ by publishing packages,
72
+ - developing a port to `Pyodide <https://pyodide.org/en/stable/>`__ for
73
+ serverless deployment with Javascript,
74
+ - developing a native Windows port.
75
+
76
+ `Full documentation <https://passagemath.org/docs/latest/html/en/index.html>`__ is
77
+ available online.
78
+
79
+ passagemath attempts to support and provides binary wheels suitable for
80
+ all major Linux distributions and recent versions of macOS.
81
+
82
+ Binary wheels for native Windows (x86_64) are are available for a subset of
83
+ the passagemath distributions. Use of the full functionality of passagemath
84
+ on Windows currently requires the use of Windows Subsystem for Linux (WSL)
85
+ or virtualization.
86
+
87
+ The supported Python versions in the passagemath 10.6.x series are 3.10.x-3.13.x.
88
+
89
+
90
+ About this pip-installable distribution package
91
+ -----------------------------------------------
92
+
93
+ This pip-installable package ``passagemath-ntl`` is a small
94
+ distribution that provides modules that depend on
95
+ `NTL <https://libntl.org/>`_, the library for doing number theory.
96
+
97
+
98
+ What is included
99
+ ----------------
100
+
101
+ * Computation of Bernoulli numbers modulo p:
102
+
103
+ * `Cython wrapper for bernmm library <https://passagemath.org/docs/latest/html/en/reference/rings_standard/sage/rings/bernmm.html>`_
104
+ * `Bernoulli numbers modulo p <https://passagemath.org/docs/latest/html/en/reference/rings_standard/sage/rings/bernoulli_mod_p.html>`_
105
+
106
+ * Finite fields of characteristic 2
107
+
108
+ * `Finite fields of characteristic 2 <https://passagemath.org/docs/latest/html/en/reference/finite_rings/sage/rings/finite_rings/finite_field_ntl_gf2e.html>`_
109
+ * `Elements of finite fields of characteristic 2 <https://passagemath.org/docs/latest/html/en/reference/finite_rings/sage/rings/finite_rings/element_ntl_gf2e.html>`_
110
+
111
+ * p-adic extension elements:
112
+
113
+ * `p-adic Extension Element <https://passagemath.org/docs/latest/html/en/reference/padics/sage/rings/padics/padic_ext_element.html#module-sage.rings.padics.padic_ext_element>`_
114
+ * `p-adic ZZ_pX Element <https://passagemath.org/docs/latest/html/en/reference/padics/sage/rings/padics/padic_ZZ_pX_element.html>`_
115
+ * `p-adic ZZ_pX CR Element <https://passagemath.org/docs/latest/html/en/reference/padics/sage/rings/padics/padic_ZZ_pX_CR_element.html>`_
116
+ * `p-adic ZZ_pX CA Element <https://passagemath.org/docs/latest/html/en/reference/padics/sage/rings/padics/padic_ZZ_pX_CA_element.html>`_
117
+ * `p-adic ZZ_pX FM Element <https://passagemath.org/docs/latest/html/en/reference/padics/sage/rings/padics/padic_ZZ_pX_FM_element.html>`_
118
+ * `PowComputer_ext <https://passagemath.org/docs/latest/html/en/reference/padics/sage/rings/padics/pow_computer_ext.html>`_
119
+
120
+ * `Frobenius on Monsky-Washnitzer cohomology of a hyperelliptic curve <https://passagemath.org/docs/latest/html/en/reference/arithmetic_curves/sage/schemes/hyperelliptic_curves/hypellfrob.html>`_
121
+
122
+ * see `MANIFEST <https://github.com/passagemath/passagemath/blob/main/pkgs/sagemath-ntl/MANIFEST.in>`_
@@ -0,0 +1,163 @@
1
+ passagemath_ntl.libs/libgcc_s-0cd532bd.so.1,sha256=QrXyyMoT5eFz2Df1EXoEtsBCQ3VIESveeHklGujc_48,183337
2
+ passagemath_ntl.libs/libgf2x-9e30c3e3.so.3.0.0,sha256=z6aIlDtTUvgZPnlLAEFhy7SzNIhPiqUBJeRypyKUVdg,68073
3
+ passagemath_ntl.libs/libgmp-0e7fc84e.so.10.5.0,sha256=19mj7ISusOKPTVdhqjzZ-Ts-9Qf82f4a_8Sslp-ypCg,773097
4
+ passagemath_ntl.libs/libmpfi-2153e8c2.so.0.0.0,sha256=rQiDBRmxHCROUwMd_WdlJ-mMY73tV_fINEFrnfzBYig,444697
5
+ passagemath_ntl.libs/libmpfr-aaecbfc0.so.6.2.1,sha256=d0ICZ_oSMCR1EFu-fXrTRwtpGZI3u9liRIsFtTyDCkQ,837889
6
+ passagemath_ntl.libs/libntl-26885ca2.so.44.0.1,sha256=GPNh8irLvvJ23o_HqlP1cm0D93FguuBnHRXKS9g15Gk,3161569
7
+ passagemath_ntl.libs/libstdc++-5d72f927.so.6.0.33,sha256=i_QxuLSNJcDImiug4WsF5wNgprWyeL3Mc09ILo-0-Dc,3564129
8
+ sage/all__sagemath_ntl.py,sha256=7LJBulOjrbpZ4bRI38kEYnyP7RTnIQ7nLuGT504of_k,189
9
+ sage/libs/all__sagemath_ntl.py,sha256=4bSDDgoHtBmLGLPls4uV8qUN8io7Lrw91M-CmErR0As,75
10
+ sage/libs/mpfi/__init__.pxd,sha256=tFPwUUwfLfPuStcKuoWZQ9_jVij0pQGVg8YQw0ymOT4,10810
11
+ sage/libs/mpfi/types.pxd,sha256=FdLs-uOjDxf8QlpiH9ZwsUz86Uau0EcCmWPmdOz74Gw,322
12
+ sage/libs/ntl/GF2.pxd,sha256=_GWR_LjjRpwYC4uBT1Dxe_CCjYb9XJS8xf59yiRHqLA,623
13
+ sage/libs/ntl/GF2E.pxd,sha256=UYn4FKhIqgWoQy0_FAd5zlxUMhqQI6lZoLbQimH5070,1005
14
+ sage/libs/ntl/GF2EX.pxd,sha256=DQj7I2URYMXWO7Cuxlrp8AvH1I7iDFOZvCGIHV6rJ8A,494
15
+ sage/libs/ntl/GF2X.pxd,sha256=TBqzoupmbUyy5SNvjASTsZ4_0-vEm44U03tIXUN2fmI,3712
16
+ sage/libs/ntl/ZZ.pxd,sha256=irjDJbQAi07Nsf7vlYJW9IRdsQmDbGQibD2kjjU47vg,3749
17
+ sage/libs/ntl/ZZX.pxd,sha256=1VT4ud4WbN0h8pihX2s34xl7fkyU44pisrPE0I8z2lE,3483
18
+ sage/libs/ntl/ZZ_p.pxd,sha256=ALtg0LJogD9oU9cSiAdiI0TdtL8B54xlMWy9rbnvsQs,1009
19
+ sage/libs/ntl/ZZ_pE.pxd,sha256=a-udUybj_bbZWqvf2hrQeFvQZu_T97t-FnzWD6M6QCs,1749
20
+ sage/libs/ntl/ZZ_pEX.pxd,sha256=vTVZgPQBLRnuwI5RR-bYuxHu5m_gZzoVDN8HUsURXCc,5540
21
+ sage/libs/ntl/ZZ_pX.pxd,sha256=LUYDS74WrRAvr2JEcVzL_PF1QiCtPYuR6nSdrLwVBaA,6510
22
+ sage/libs/ntl/__init__.py,sha256=j-YpcXAXkylLGSQbxuFWIiBBt4h5--gft0rB-gt2opc,127
23
+ sage/libs/ntl/all.py,sha256=rNXkK2wpOQ4e0xMzdHVDx_SvzToh9bmCIlkqyhb698s,2286
24
+ sage/libs/ntl/conversion.pxd,sha256=--FH5p7qTF7pvX5ID8QOiP0lqbBsVmwgraHjJ6fn5ME,3591
25
+ sage/libs/ntl/convert.cpython-313-x86_64-linux-musl.so,sha256=VeItIS3UZyLIZyE5IzCkYgc7JYi25yLnPJnduObYS30,123057
26
+ sage/libs/ntl/convert.pxd,sha256=__hz49kJMXA4Nx1zNSVvklsZV3TY-VMNJuORU7V6BGA,289
27
+ sage/libs/ntl/convert.pyx,sha256=Y-Bg3h8wYVZJVINBegvsh7jPjYvWlAAjQLR4f_rlf-w,1355
28
+ sage/libs/ntl/decl.pxi,sha256=9Bg-6UE0Zr0wQpfnGgfVcUP_KkJ7HAmnhxoaz-Tl2SM,660
29
+ sage/libs/ntl/error.cpython-313-x86_64-linux-musl.so,sha256=tJ_0QcpCzytaL_OdEvTWuHuyy3ddvTHaZlPD3_mfo3s,135193
30
+ sage/libs/ntl/error.pyx,sha256=2nqfOXIZaV43mOqAQgViklJ2vVnAtCNbkHrdy-NLygY,1769
31
+ sage/libs/ntl/lzz_p.pxd,sha256=wfV-gQ853XbzsVYfhnKI1iorYP8ts_SoJbnxy-f0ZZU,803
32
+ sage/libs/ntl/lzz_pX.pxd,sha256=rjZrFngWqwsnbPWqmGV60B0nMFTXhp29c08mZRUvQU4,3343
33
+ sage/libs/ntl/mat_GF2.pxd,sha256=X6BVVawJLQiOEB-N-GwxUuLP_yi1diyYs_5tDxL8OUI,1291
34
+ sage/libs/ntl/mat_GF2E.pxd,sha256=e3l-QC_X8dZqcThA-b9oxiSG3WAw4B48e39Yso1pOSQ,1352
35
+ sage/libs/ntl/mat_ZZ.pxd,sha256=uYefAGmI34B9uHUx0Ar_ubwf56sdXOf22LXYme3aEf4,5172
36
+ sage/libs/ntl/misc.pxi,sha256=URBgZg1VKjZIxWkZPzhm4DX66XjbaU5-eGuZbUEwJZ4,1017
37
+ sage/libs/ntl/ntl_GF2.cpython-313-x86_64-linux-musl.so,sha256=eEXFl8U9HO9fz9P7gn_3azckcU8WCaR-Hg1BQN7aIBE,497769
38
+ sage/libs/ntl/ntl_GF2.pxd,sha256=IR3S8tjHGG0XGxGSUuceq_w92WycIHjJUE4JsY0qe6s,121
39
+ sage/libs/ntl/ntl_GF2.pyx,sha256=Qxl5AAm2W6u1_ueAH3GA-6qFvLTgL4WNLjOnWfuJ0lo,7162
40
+ sage/libs/ntl/ntl_GF2E.cpython-313-x86_64-linux-musl.so,sha256=cATrIeX5s4MFuLIme5wndffmCSO59tiaxxi7USf7qCQ,601153
41
+ sage/libs/ntl/ntl_GF2E.pxd,sha256=zLIBEc7VM08Ybl9sNBYNZbh_KCpOEDBCCpJaB9zQ8Rw,251
42
+ sage/libs/ntl/ntl_GF2E.pyx,sha256=Cc0NpDPaISS6BiavcM6Ts7ZMSRvLj3QxaKL39AXcWM4,14855
43
+ sage/libs/ntl/ntl_GF2EContext.cpython-313-x86_64-linux-musl.so,sha256=W7jZoHArC5X5Olnqp7jxHPMZ1ue6xbRzz6p_BDM8nqI,414657
44
+ sage/libs/ntl/ntl_GF2EContext.pxd,sha256=svKsYU12jLjEbfpJV_xvNrq_OvWrB5f_9NGRtLMTGEM,283
45
+ sage/libs/ntl/ntl_GF2EContext.pyx,sha256=jrrvW75Fz7qUpzl_Uya5JwEzq5kV8niGdfK1ziapz2A,3740
46
+ sage/libs/ntl/ntl_GF2EX.cpython-313-x86_64-linux-musl.so,sha256=IfMhMCvqUiTg946kkc1DPH6UOJIPWKbY5sWfM-od5EQ,510937
47
+ sage/libs/ntl/ntl_GF2EX.pxd,sha256=9oi1SHQo2lUY3xXJXtVQnCOXaktFY1XUVx0gNPLTB-I,337
48
+ sage/libs/ntl/ntl_GF2EX.pyx,sha256=7oiuWMV9UfU1Du2kNe9ubY5IwtsaRrILMjqusEF9AoY,7954
49
+ sage/libs/ntl/ntl_GF2X.cpython-313-x86_64-linux-musl.so,sha256=b0644e6jUIkt7xgNLGH7ITowvyxy-0DLiIuQUVjTYl4,917969
50
+ sage/libs/ntl/ntl_GF2X.pxd,sha256=pwc5TYbB4b9L9XSZjQwP89XSPVbhADbUYhH2aUSw9ys,124
51
+ sage/libs/ntl/ntl_GF2X.pyx,sha256=KTtkNna5dLG5CHAuPedG0_6O7pAjUqZ5U-uoPXtI3Nk,20622
52
+ sage/libs/ntl/ntl_GF2X_linkage.pxi,sha256=Rw8Hsy6c0RBLjZ-ceApgxvg_npveektTcc_6YJ0IH6k,9257
53
+ sage/libs/ntl/ntl_ZZ.cpython-313-x86_64-linux-musl.so,sha256=o1zf0tFQ15KGkCaRr7m_GfxFfC02BKMeN63MjO24C3Y,819057
54
+ sage/libs/ntl/ntl_ZZ.pxd,sha256=ohJDLDrmZ7jMduDRL5etPIZ87IxxRMjl745Gmge-HcU,224
55
+ sage/libs/ntl/ntl_ZZ.pyx,sha256=H1FaXuoHeXWObkmaGVEgF-WJV2gn8-uNph55bv8rxPA,13944
56
+ sage/libs/ntl/ntl_ZZX.cpython-313-x86_64-linux-musl.so,sha256=pEDJNW1MR9L-4XvLS0O7six9KG4VfkR7B8T5G6Xa8Zg,1078201
57
+ sage/libs/ntl/ntl_ZZX.pxd,sha256=XNGOxAPE9B06O45QucckJaB-fCOtIdxfoN3eHC7Rw_g,253
58
+ sage/libs/ntl/ntl_ZZX.pyx,sha256=DWW2OrRej4B-DBgiyOuqshLnYn_1wwqVpTe2qUHmNdY,34730
59
+ sage/libs/ntl/ntl_ZZ_p.cpython-313-x86_64-linux-musl.so,sha256=nPFh7Fo1QbvXPWBhqqMFqc3R5DMYh91RzsrxujwN1ZE,736785
60
+ sage/libs/ntl/ntl_ZZ_p.pxd,sha256=erL2upd1kw4EhJB_QcdjoZWECdsfm-pfiHhOXLVZ1m0,361
61
+ sage/libs/ntl/ntl_ZZ_p.pyx,sha256=5n3o7aABf7wGcO2BDFdJDNlq8a75RyMV2sm6ZqEjY5k,14606
62
+ sage/libs/ntl/ntl_ZZ_pContext.cpython-313-x86_64-linux-musl.so,sha256=Zh96LsE8Exs_chn3OyFoo0EQ0PTi8KTw-g2--O3x0H8,572257
63
+ sage/libs/ntl/ntl_ZZ_pContext.pxd,sha256=2warqallT_WALnd5j3q1lsPvKto4lIp8GDNBcA6C5p4,615
64
+ sage/libs/ntl/ntl_ZZ_pContext.pyx,sha256=ZCmjdoImf2tE1yNQXGfhoTynsOFQnM0ff68qkGN-FaU,5719
65
+ sage/libs/ntl/ntl_ZZ_pE.cpython-313-x86_64-linux-musl.so,sha256=fXxyZNNmOlMUm431-HBaF5iEM8y-7cKt3-m4QHG1uvY,753361
66
+ sage/libs/ntl/ntl_ZZ_pE.pxd,sha256=IA7GemK36SNKPT1kaCJw5Vl8sHTaZMThLF-ZVa6-GZ8,424
67
+ sage/libs/ntl/ntl_ZZ_pE.pyx,sha256=ZJXEDdwYYxdIvooXJOQ5qJr3ESdbJwgLIo1DwT0Ljks,11630
68
+ sage/libs/ntl/ntl_ZZ_pEContext.cpython-313-x86_64-linux-musl.so,sha256=nFoEX3ppIP49e3s1Krd6zxw2YP6b15VY47BeZliiZR0,629481
69
+ sage/libs/ntl/ntl_ZZ_pEContext.pxd,sha256=p1NTT_EoJYzjSwxsYRS4SEmo70gQksE4zUqrzDB4Pf4,696
70
+ sage/libs/ntl/ntl_ZZ_pEContext.pyx,sha256=QRfwU53L_ClBmrOlSxObZ5EstBdSXTNsEg6KL4NztO4,7213
71
+ sage/libs/ntl/ntl_ZZ_pEX.cpython-313-x86_64-linux-musl.so,sha256=mvXzvZkyEjAnp0dwG7te9HU0R6PYyd68ilxu5BSCnZA,1028689
72
+ sage/libs/ntl/ntl_ZZ_pEX.pxd,sha256=4Q36m179SjB4lysxFo2_RJ2OFt1GfbuD8qd6z_ksODI,382
73
+ sage/libs/ntl/ntl_ZZ_pEX.pyx,sha256=rH1QkVjw_FrXcc9bLUx4Iz4txaYMwibPCxSLATNY2Do,39881
74
+ sage/libs/ntl/ntl_ZZ_pEX_linkage.pxi,sha256=Yu6Y6vEHwPMhgG-aGvHmrR36ExuO3ho6a8UTGBW8kNw,12462
75
+ sage/libs/ntl/ntl_ZZ_pX.cpython-313-x86_64-linux-musl.so,sha256=LM1oyEn6DX_fBYOMl-NyuxRKn0XCw8ugRrLp21Pi1J0,1390929
76
+ sage/libs/ntl/ntl_ZZ_pX.pxd,sha256=f8YDnsRc-gwc6ci5Bkzg06OUDuNqawF6nb-hQ6Py4yo,634
77
+ sage/libs/ntl/ntl_ZZ_pX.pyx,sha256=Pp7y0mGUJ8XzgrxepybuvUg-BBOIorDsHt9tzo5Kl0k,45735
78
+ sage/libs/ntl/ntl_lzz_p.cpython-313-x86_64-linux-musl.so,sha256=j06elBSRcLFcwjobdLGPU03z7PyeR016sZoaJ45huY8,574049
79
+ sage/libs/ntl/ntl_lzz_p.pxd,sha256=jvw29tbLHXgqzJxAHzUiHFl39VwMGNCwUA6wtgO8azo,256
80
+ sage/libs/ntl/ntl_lzz_p.pyx,sha256=KMj3wXCoNjQTVbAZA0X-UGD2y82UEvnrorhcE3qvuxA,12532
81
+ sage/libs/ntl/ntl_lzz_pContext.cpython-313-x86_64-linux-musl.so,sha256=myMomfKngcpEa6lD14YtKYg22pY--Tow0CGdjaY6glY,459633
82
+ sage/libs/ntl/ntl_lzz_pContext.pxd,sha256=IKI_F9hR1UDR_zVB6OJQxdzKvc0bkDfPxXrPnEf4OgE,206
83
+ sage/libs/ntl/ntl_lzz_pContext.pyx,sha256=D4d0MZNTtJoapgEPgFhuThYe2dih7XOp2C94TvbIq1U,3864
84
+ sage/libs/ntl/ntl_lzz_pX.cpython-313-x86_64-linux-musl.so,sha256=CF1py3V2f6sucUt9TXYqwBf2wW6Pcqq5fUTmT4s7TGA,891937
85
+ sage/libs/ntl/ntl_lzz_pX.pxd,sha256=fOleR2UZOMLpyPnlnihcSWA48H2JF4hqtFmNccVxe9o,287
86
+ sage/libs/ntl/ntl_lzz_pX.pyx,sha256=bGklyElTFmYJEq6vTR8M_1iXm2g1ZSt5z-hTD-X4QtA,26269
87
+ sage/libs/ntl/ntl_mat_GF2.cpython-313-x86_64-linux-musl.so,sha256=uWJNm-mwwJ6qGmtisaYCgvPekcufV33o_F4k7l9EP8c,925457
88
+ sage/libs/ntl/ntl_mat_GF2.pxd,sha256=VijyibgLkZO2dtruyVnc3tV589-z6yU7Idp8wkyDDfA,244
89
+ sage/libs/ntl/ntl_mat_GF2.pyx,sha256=TSQsBp4SUCEwiiON1a1RQTdeF8F8z1cEticWMg-vPqU,17387
90
+ sage/libs/ntl/ntl_mat_GF2E.cpython-313-x86_64-linux-musl.so,sha256=e-ziWaMhuaE4kB4KefOvM2ekcCTqn5A6Wuqg9nZ64Dc,999569
91
+ sage/libs/ntl/ntl_mat_GF2E.pxd,sha256=obVNeKOcx8ZzvDNjmo5qUceFBsvTnO4BHIJlcvR5j6c,349
92
+ sage/libs/ntl/ntl_mat_GF2E.pyx,sha256=ZgtfxhLaWEqZuPYYq-k9r8kDRe6gFiIG4dfyorXC2js,24168
93
+ sage/libs/ntl/ntl_mat_ZZ.cpython-313-x86_64-linux-musl.so,sha256=hTsRDPFXABTiw49k9BAKdJO1TAi17TSrJXn9zk5qJ_M,1431345
94
+ sage/libs/ntl/ntl_mat_ZZ.pxd,sha256=Y7EwFaF-ovG4Ndk4_5T_zK-SckZ14b8CX2IA9UN-9e0,161
95
+ sage/libs/ntl/ntl_mat_ZZ.pyx,sha256=8voaX61_Rt6nBn1lW2aAvx-HnpfkCeI1SapYGWBlEDI,53556
96
+ sage/libs/ntl/ntl_tools.pxd,sha256=3bpFmnnO8uXTLbc-ECMjzE-vjzbBYxZlMdU5yAUwEZc,142
97
+ sage/libs/ntl/ntlwrap.h,sha256=Pjd7xuzY9OmMfx7O0oUQRXkXvZ6Qy4jIEOtlbddnsQU,1228
98
+ sage/libs/ntl/ntlwrap_impl.h,sha256=xbkwT7dHS0e5woE1VgC7ZRdzAhRsxFGJcokwywMY2fg,17973
99
+ sage/libs/ntl/types.pxd,sha256=skz4zW76stK19tjyZLKvDdmWb0igyqCAQvEXPjK4zHQ,4041
100
+ sage/libs/ntl/vec_GF2.pxd,sha256=7bakyBtL-0W-jRPsGB84n6upoOHS1avWZfVi8TGfRIM,1093
101
+ sage/libs/ntl/vec_GF2E.pxd,sha256=252Pb3-9l6eYbAnRMGwIP6SNtwu4XnbcjRvC085Lrm4,86
102
+ sage/matrix/all__sagemath_ntl.py,sha256=Xwyux1QrLqYdsoF00d1SE1oXhFs5WGrg-2EvcGo2vHg,42
103
+ sage/matrix/matrix_modn_dense_double.pxd,sha256=qBNg45CyeCEKeqmHU6tVjWtFfxuO-dTxVysD-miIjFo,321
104
+ sage/matrix/matrix_modn_dense_float.pxd,sha256=NZ3z0GTv0_q1GZQ528bdfYjX_E70DJHlgeKLf7RMbhE,283
105
+ sage/matrix/matrix_modn_dense_template.pxi,sha256=c_DM8kBexHD0sfiHtBBqNUZOJMdyX4Ducpa1fR9H5IY,106062
106
+ sage/matrix/matrix_modn_dense_template_header.pxi,sha256=fC-nHtUaAqKGu6FhnLE9CGljPyM7Rh6u3YOvSWmcpSg,516
107
+ sage/matrix/matrix_modn_sparse.pxd,sha256=FfVdVKP06I8r-V513j0kus5FkyGGbBqKskU2GwpH7NM,299
108
+ sage/misc/all__sagemath_ntl.py,sha256=Xwyux1QrLqYdsoF00d1SE1oXhFs5WGrg-2EvcGo2vHg,42
109
+ sage/rings/all__sagemath_ntl.py,sha256=l6oLjcHmqz6fbHBAm-cqE3toKyfSJ0LFCXQZhUZe8_U,224
110
+ sage/rings/bernmm.cpython-313-x86_64-linux-musl.so,sha256=ORE2p0rq0Dk6yHdGznJPX09KSlg60xOC6bxBLwYiVhQ,571785
111
+ sage/rings/bernmm.pyx,sha256=GU840d0toDlqzcXHPDdH7_MYBWoy7EfDUr8hB6Re_xU,4826
112
+ sage/rings/bernoulli_mod_p.cpython-313-x86_64-linux-musl.so,sha256=DYLWpvU21foe5u2lmEQd_HsaMYpCoNrq29aUPCVkMvw,478488
113
+ sage/rings/bernoulli_mod_p.pyx,sha256=uHy-t2vxbhYlRJhAMO0cOKSbSiRsdZ2ZIqD1Xaclt7U,8677
114
+ sage/rings/real_mpfi.pxd,sha256=EmXlZ4HBJvrHyUsLGxYEO-Da44mOUo5cLkVkdK4QK_I,2275
115
+ sage/rings/finite_rings/all__sagemath_ntl.py,sha256=Xwyux1QrLqYdsoF00d1SE1oXhFs5WGrg-2EvcGo2vHg,42
116
+ sage/rings/finite_rings/finite_field_ntl_gf2e.py,sha256=8zRWQ8ntdG99vtTPi7x-bzgeBi59Pxv49YYdLtXuU2Q,8897
117
+ sage/rings/finite_rings/residue_field_ntl_gf2e.cpython-313-x86_64-linux-musl.so,sha256=lg8s4ZGMXALhXEvGJUhzILHqxBCgr3YXSib2kn0cdIs,319016
118
+ sage/rings/finite_rings/residue_field_ntl_gf2e.pyx,sha256=7SnhSWOlQ9KAOUPuVKBeRzHIO2MyJ31GT_Teme7loSo,5582
119
+ sage/rings/padics/all__sagemath_ntl.py,sha256=E-LUA5MTppI03uZJnp1dSC05Tc3WpOV2OAP3sngARoI,170
120
+ sage/rings/padics/padic_ZZ_pX_CA_element.cpython-313-x86_64-linux-musl.so,sha256=zenHxTOikYZTHFAI27D-G99Ee0PgoLMoe73EZT4IAo8,1582873
121
+ sage/rings/padics/padic_ZZ_pX_CA_element.pxd,sha256=bDZkmJ5fhwFPmNsouX9TKZE3IionhV6AyoqO91yZhoU,1072
122
+ sage/rings/padics/padic_ZZ_pX_CA_element.pyx,sha256=bm06YwL-VctCzcwsejfg6cxJwLM2nbsUZYiBR8Kt2uA,93250
123
+ sage/rings/padics/padic_ZZ_pX_CR_element.cpython-313-x86_64-linux-musl.so,sha256=OajiX2RYv8iCupS1Akryo3wU017YmFPKqi0vTPcKPqg,1948009
124
+ sage/rings/padics/padic_ZZ_pX_CR_element.pxd,sha256=kj7li0xDm4LH42RnSip6prLDwRlFRvO-xtFfaNR-HL8,1652
125
+ sage/rings/padics/padic_ZZ_pX_CR_element.pyx,sha256=cQNF-p0omfwJQ7ODyNAwWgO9sDjA2VZJkA4L7BYPicM,128040
126
+ sage/rings/padics/padic_ZZ_pX_FM_element.cpython-313-x86_64-linux-musl.so,sha256=pS3TWOxhFSaFL2xnf0elvFSDd3a44Obi-VjPGdrBj6E,1529561
127
+ sage/rings/padics/padic_ZZ_pX_FM_element.pxd,sha256=ZwRN2dmQV8TEPJsUx-PmDq7cuhaJuQzMwcUqMVUrA0g,478
128
+ sage/rings/padics/padic_ZZ_pX_FM_element.pyx,sha256=5EAR3ZNcLqqkj-ValrbT9L1Yy1b_PXxu98iLjk39RzY,63686
129
+ sage/rings/padics/padic_ZZ_pX_element.cpython-313-x86_64-linux-musl.so,sha256=jO-TNkt3RG1RPUMec6N1NExyAI6WykplAO5syV5ene4,1170185
130
+ sage/rings/padics/padic_ZZ_pX_element.pxd,sha256=lHgxYJMCoZ4SysipUtc7LvwcNGA474N0aQKs17xLfSY,257
131
+ sage/rings/padics/padic_ZZ_pX_element.pyx,sha256=CXukK4kqBcfgEReml1_AOy-5WNfcPoqDyfllgeIZroc,35633
132
+ sage/rings/padics/padic_ext_element.cpython-313-x86_64-linux-musl.so,sha256=lUustRLTz_Rdyf9vUMs14K_G8jS5JlBtC1fUEIwIfrc,734705
133
+ sage/rings/padics/padic_ext_element.pxd,sha256=mEsTNvVU3yFhC4C_gZ1UY77ZM8VdgyLY38MdvTboe0s,2477
134
+ sage/rings/padics/padic_ext_element.pyx,sha256=qXWc2jZt7WRPQKDPQAklc_ouNNoTpEPx_ZOs0Tj-foo,19205
135
+ sage/rings/padics/pow_computer_ext.cpython-313-x86_64-linux-musl.so,sha256=gbBl-siSQ63UeoFCPEBk0LjW-4U5AU9Kxv-gE3ayW6U,1433217
136
+ sage/rings/padics/pow_computer_ext.pxd,sha256=YvG3t7IHstUK0iwe4gUKHeaQk-yBMEQXbxlpV9EaSUI,3909
137
+ sage/rings/padics/pow_computer_ext.pyx,sha256=ARN5hdbEOA-KcFI1r5aTEIGG_lqegUyid4MgfYOy-U8,98055
138
+ sage/rings/polynomial/all__sagemath_ntl.py,sha256=Xwyux1QrLqYdsoF00d1SE1oXhFs5WGrg-2EvcGo2vHg,42
139
+ sage/rings/polynomial/evaluation_ntl.cpython-313-x86_64-linux-musl.so,sha256=gGxdowIq_2LMOACXk_6vW_sipV_4meuaPjjBn64enzY,118777
140
+ sage/rings/polynomial/evaluation_ntl.pxd,sha256=Kd_Llh1N_eQPOwFuw7cohH9JKX6rQeTbvhhfqOdmce0,294
141
+ sage/rings/polynomial/evaluation_ntl.pyx,sha256=2XUnShnfILYo21W0u9mQWwZgjRGGwjTIldvlRYGOOnw,2207
142
+ sage/rings/polynomial/polynomial_gf2x.cpython-313-x86_64-linux-musl.so,sha256=Q5og9Xrrz4ZvnvtAFWlRJx-s_sNbkfYIpLdKO-Zu5UQ,1800137
143
+ sage/rings/polynomial/polynomial_gf2x.pxd,sha256=5k6WjceWXj-HrcxWHAlSKJZ24taayZwz1TM7sa6hQUg,230
144
+ sage/rings/polynomial/polynomial_gf2x.pyx,sha256=5s-KIrfB6R4MfUFkI24u-LBNKNfFlQA88cGAfDhyBZs,12290
145
+ sage/rings/polynomial/polynomial_integer_dense_ntl.cpython-313-x86_64-linux-musl.so,sha256=6URWPUT7FRfefT5CeVKQA72uP5tWesTd4nB1WEnyKUM,1652721
146
+ sage/rings/polynomial/polynomial_integer_dense_ntl.pxd,sha256=yjuyM2x15NwPeTJvQGHlwkwkOzZ1N5Mu69iNQHVbsxU,271
147
+ sage/rings/polynomial/polynomial_integer_dense_ntl.pyx,sha256=uq30JheunVy5Oj6HLMa_uxdFGfOfPYNdlL_fdiITIn0,36417
148
+ sage/rings/polynomial/polynomial_modn_dense_ntl.cpython-313-x86_64-linux-musl.so,sha256=q6nlPy3CjgNPqz8842hDYS9Om5pInBCpaB9w77-fxUw,2677945
149
+ sage/rings/polynomial/polynomial_modn_dense_ntl.pxd,sha256=hla7zO0d5xKdk1QmFdOYKs7N8FzoHZc48Jh2SWsFw1c,1170
150
+ sage/rings/polynomial/polynomial_modn_dense_ntl.pyx,sha256=-gJXcsQ_cts8WrMuOIR6ZNMmzffvEacl04J6y4Fe1tQ,68031
151
+ sage/rings/polynomial/polynomial_template.pxi,sha256=b2GeTLSwje5NYcq1rsChy7XjKQHAUJcNiuJt1ENFZg8,29219
152
+ sage/rings/polynomial/polynomial_template_header.pxi,sha256=rj1tt1VARE7gqMcDzx0Z2VgILY6aocrOcnSH4-E7qkw,285
153
+ sage/rings/polynomial/polynomial_zz_pex.cpython-313-x86_64-linux-musl.so,sha256=jPwXgZd4YzQfAIqAJ2E2Qwui_msrteIRrBD8CbO7sqs,1862777
154
+ sage/rings/polynomial/polynomial_zz_pex.pxd,sha256=Dmy5t7VuoyNznuqctOMIhWd15JDeA2tYRJG7zxG-mus,433
155
+ sage/rings/polynomial/polynomial_zz_pex.pyx,sha256=GsyskCpNinPQyMb3nmWWTmyRGFG53Gnf9xPmQQNF374,26292
156
+ sage/schemes/all__sagemath_ntl.py,sha256=Xwyux1QrLqYdsoF00d1SE1oXhFs5WGrg-2EvcGo2vHg,42
157
+ sage/schemes/hyperelliptic_curves/all__sagemath_ntl.py,sha256=Xwyux1QrLqYdsoF00d1SE1oXhFs5WGrg-2EvcGo2vHg,42
158
+ sage/schemes/hyperelliptic_curves/hypellfrob.cpython-313-x86_64-linux-musl.so,sha256=4kIsYrX7tXRfTAQSoaYNPC0HXMn4Iu60mt13P9MLIJI,3041081
159
+ sage/schemes/hyperelliptic_curves/hypellfrob.pyx,sha256=_t9PMPJucAG_ikxTrFOb2zNjp8W6vuo2ga41U6mv3yA,9119
160
+ passagemath_ntl-10.6.33.dist-info/METADATA,sha256=TfOZpe2l-p79VALpCN-A7iuHqNrnN9DVE7jaW3cYf84,6444
161
+ passagemath_ntl-10.6.33.dist-info/WHEEL,sha256=4VbEOkf4fdBUBHdV24POjoH-zuik_eIDLSImZZCAQpQ,112
162
+ passagemath_ntl-10.6.33.dist-info/top_level.txt,sha256=Kmzulf9WsphADFQuqgvdy5mvTLDj_V2zkFHU2s3UXos,6
163
+ passagemath_ntl-10.6.33.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: false
4
+ Tag: cp313-cp313-musllinux_1_2_x86_64
5
+
@@ -0,0 +1,2 @@
1
+
2
+ sage
@@ -0,0 +1,7 @@
1
+ # sage_setup: distribution = sagemath-ntl
2
+ # delvewheel: patch
3
+
4
+ from .all__sagemath_categories import *
5
+
6
+ from sage.libs.all__sagemath_ntl import *
7
+ from sage.rings.all__sagemath_ntl import *
@@ -0,0 +1,3 @@
1
+ # sage_setup: distribution = sagemath-ntl
2
+
3
+ import sage.libs.ntl.all as ntl
@@ -0,0 +1,287 @@
1
+ # sage_setup: distribution = sagemath-ntl
2
+ # distutils: libraries = gmp mpfr mpfi
3
+
4
+ from sage.libs.gmp.types cimport *
5
+ from sage.libs.mpfr.types cimport *
6
+ from sage.libs.mpfi.types cimport *
7
+
8
+ cdef extern from "mpfi.h":
9
+ # Rounding
10
+ int mpfi_round_prec(mpfi_ptr, mpfr_prec_t prec)
11
+
12
+ # Initialization, destruction, and assignment
13
+ # Initializations
14
+ void mpfi_init(mpfi_ptr)
15
+ void mpfi_init2(mpfi_ptr, mpfr_prec_t)
16
+ void mpfi_clear(mpfi_ptr)
17
+
18
+ # mpfi bounds have the same precision
19
+ mpfr_prec_t mpfi_get_prec(mpfi_srcptr)
20
+ void mpfi_set_prec(mpfi_ptr, mpfr_prec_t)
21
+
22
+ # assignment functions
23
+ int mpfi_set(mpfi_ptr, mpfi_srcptr)
24
+ int mpfi_set_si(mpfi_ptr, long)
25
+ int mpfi_set_ui(mpfi_ptr, unsigned long)
26
+ int mpfi_set_d(mpfi_ptr, double)
27
+ int mpfi_set_z(mpfi_ptr, mpz_t)
28
+ int mpfi_set_q(mpfi_ptr, mpq_t)
29
+ int mpfi_set_fr(mpfi_ptr, mpfr_srcptr)
30
+ int mpfi_set_str(mpfi_ptr, const char *, int)
31
+
32
+ # combined initialization and assignment functions
33
+ int mpfi_init_set(mpfi_ptr, mpfi_srcptr)
34
+ int mpfi_init_set_si(mpfi_ptr, long)
35
+ int mpfi_init_set_ui(mpfi_ptr, unsigned long)
36
+ int mpfi_init_set_d(mpfi_ptr, double)
37
+ int mpfi_init_set_z(mpfi_ptr, mpz_srcptr)
38
+ int mpfi_init_set_q(mpfi_ptr, mpq_srcptr)
39
+ int mpfi_init_set_fr(mpfi_ptr, mpfr_srcptr)
40
+ int mpfi_init_set_str(mpfi_ptr, const char *, int)
41
+
42
+ # swapping two intervals
43
+ void mpfi_swap(mpfi_ptr, mpfi_ptr)
44
+
45
+ # Various useful interval functions
46
+ # with scalar or interval results
47
+
48
+ # absolute diameter
49
+ int mpfi_diam_abs(mpfr_ptr, mpfi_srcptr)
50
+ # relative diameter
51
+ int mpfi_diam_rel(mpfr_ptr, mpfi_srcptr)
52
+ # diameter: relative if the interval does not contain 0
53
+ # absolute otherwise
54
+ int mpfi_diam(mpfr_ptr, mpfi_srcptr)
55
+ # magnitude: the largest absolute value of any element
56
+ int mpfi_mag(mpfr_ptr, mpfi_srcptr)
57
+ # magnitude: the smallest absolute value of any element
58
+ int mpfi_mig(mpfr_ptr, mpfi_srcptr)
59
+ # middle of y
60
+ int mpfi_mid(mpfr_ptr, mpfi_srcptr)
61
+ # picks randomly a point m in y
62
+ void mpfi_alea(mpfr_ptr, mpfi_srcptr)
63
+
64
+ # Conversions
65
+ double mpfi_get_d(mpfi_srcptr)
66
+ void mpfi_get_fr(mpfr_ptr, mpfi_srcptr)
67
+
68
+ # Basic arithmetic operations
69
+
70
+ # arithmetic operations between two interval operands
71
+ int mpfi_add(mpfi_ptr, mpfi_srcptr, mpfi_srcptr)
72
+ int mpfi_sub(mpfi_ptr, mpfi_srcptr, mpfi_srcptr)
73
+ int mpfi_mul(mpfi_ptr, mpfi_srcptr, mpfi_srcptr)
74
+ int mpfi_div(mpfi_ptr, mpfi_srcptr, mpfi_srcptr)
75
+
76
+ # arithmetic operations between an interval operand and a double prec. floating-point
77
+ int mpfi_add_d(mpfi_ptr, mpfi_srcptr, double)
78
+ int mpfi_sub_d(mpfi_ptr, mpfi_srcptr, double)
79
+ int mpfi_d_sub(mpfi_ptr, double, mpfi_srcptr)
80
+ int mpfi_mul_d(mpfi_ptr, mpfi_srcptr, double)
81
+ int mpfi_div_d(mpfi_ptr, mpfi_srcptr, double)
82
+ int mpfi_d_div(mpfi_ptr, double, mpfi_srcptr)
83
+
84
+ # arithmetic operations between an interval operand and an unsigned long integer
85
+ int mpfi_add_ui(mpfi_ptr, mpfi_srcptr, unsigned long)
86
+ int mpfi_sub_ui(mpfi_ptr, mpfi_srcptr, unsigned long)
87
+ int mpfi_ui_sub(mpfi_ptr, unsigned long, mpfi_srcptr)
88
+ int mpfi_mul_ui(mpfi_ptr, mpfi_srcptr, unsigned long)
89
+ int mpfi_div_ui(mpfi_ptr, mpfi_srcptr, unsigned long)
90
+ int mpfi_ui_div(mpfi_ptr, unsigned long, mpfi_srcptr)
91
+
92
+ # arithmetic operations between an interval operand and a long integer
93
+ int mpfi_add_si(mpfi_ptr, mpfi_srcptr, long)
94
+ int mpfi_sub_si(mpfi_ptr, mpfi_srcptr, long)
95
+ int mpfi_si_sub(mpfi_ptr, long, mpfi_srcptr)
96
+ int mpfi_mul_si(mpfi_ptr, mpfi_srcptr, long)
97
+ int mpfi_div_si(mpfi_ptr, mpfi_srcptr, long)
98
+ int mpfi_si_div(mpfi_ptr, long, mpfi_srcptr)
99
+
100
+ # arithmetic operations between an interval operand and a multiple prec. integer
101
+ int mpfi_add_z(mpfi_ptr, mpfi_srcptr, mpz_srcptr)
102
+ int mpfi_sub_z(mpfi_ptr, mpfi_srcptr, mpz_srcptr)
103
+ int mpfi_z_sub(mpfi_ptr, mpz_srcptr, mpfi_srcptr)
104
+ int mpfi_mul_z(mpfi_ptr, mpfi_srcptr, mpz_srcptr)
105
+ int mpfi_div_z(mpfi_ptr, mpfi_srcptr, mpz_srcptr)
106
+ int mpfi_z_div(mpfi_ptr, mpz_srcptr, mpfi_srcptr)
107
+
108
+ # arithmetic operations between an interval operand and a multiple prec. rational
109
+ int mpfi_add_q(mpfi_ptr, mpfi_srcptr, mpq_srcptr)
110
+ int mpfi_sub_q(mpfi_ptr, mpfi_srcptr, mpq_srcptr)
111
+ int mpfi_q_sub(mpfi_ptr, mpq_srcptr, mpfi_srcptr)
112
+ int mpfi_mul_q(mpfi_ptr, mpfi_srcptr, mpq_srcptr)
113
+ int mpfi_div_q(mpfi_ptr, mpfi_srcptr, mpq_srcptr)
114
+ int mpfi_q_div(mpfi_ptr, mpq_srcptr, mpfi_srcptr)
115
+
116
+ # arithmetic operations between an interval operand and a mult. prec. floating-pt nb
117
+ int mpfi_add_fr(mpfi_ptr, mpfi_srcptr, mpfr_srcptr)
118
+ int mpfi_sub_fr(mpfi_ptr, mpfi_srcptr, mpfr_srcptr)
119
+ int mpfi_fr_sub(mpfi_ptr, mpfr_srcptr, mpfi_srcptr)
120
+ int mpfi_mul_fr(mpfi_ptr, mpfi_srcptr, mpfr_srcptr)
121
+ int mpfi_div_fr(mpfi_ptr, mpfi_srcptr, mpfr_srcptr)
122
+ int mpfi_fr_div(mpfi_ptr, mpfr_srcptr, mpfi_srcptr)
123
+
124
+ # arithmetic operations taking a single interval operand
125
+ int mpfi_neg(mpfi_ptr, mpfi_srcptr)
126
+ int mpfi_sqr(mpfi_ptr, mpfi_srcptr)
127
+ # the inv function generates the whole real interval
128
+ # if 0 is in the interval defining the divisor
129
+ int mpfi_inv(mpfi_ptr, mpfi_srcptr)
130
+ # the sqrt of a (partially) negative interval is a NaN
131
+ int mpfi_sqrt(mpfi_ptr, mpfi_srcptr)
132
+ # the first interval contains the absolute values of
133
+ # every element of the second interval
134
+ int mpfi_abs(mpfi_ptr, mpfi_srcptr)
135
+
136
+ # various operations
137
+ int mpfi_mul_2exp(mpfi_ptr, mpfi_srcptr, unsigned long)
138
+ int mpfi_mul_2ui(mpfi_ptr, mpfi_srcptr, unsigned long)
139
+ int mpfi_mul_2si(mpfi_ptr, mpfi_srcptr, long)
140
+ int mpfi_div_2exp(mpfi_ptr, mpfi_srcptr, unsigned long)
141
+ int mpfi_div_2ui(mpfi_ptr, mpfi_srcptr, unsigned long)
142
+ int mpfi_div_2si(mpfi_ptr, mpfi_srcptr, long)
143
+
144
+ # Special functions
145
+ int mpfi_log(mpfi_ptr, mpfi_srcptr)
146
+ int mpfi_exp(mpfi_ptr, mpfi_srcptr)
147
+ int mpfi_exp2(mpfi_ptr, mpfi_srcptr)
148
+
149
+ int mpfi_cos(mpfi_ptr, mpfi_srcptr)
150
+ int mpfi_sin(mpfi_ptr, mpfi_srcptr)
151
+ int mpfi_tan(mpfi_ptr, mpfi_srcptr)
152
+ int mpfi_acos(mpfi_ptr, mpfi_srcptr)
153
+ int mpfi_asin(mpfi_ptr, mpfi_srcptr)
154
+ int mpfi_atan(mpfi_ptr, mpfi_srcptr)
155
+
156
+ int mpfi_cosh(mpfi_ptr, mpfi_srcptr)
157
+ int mpfi_sinh(mpfi_ptr, mpfi_srcptr)
158
+ int mpfi_tanh(mpfi_ptr, mpfi_srcptr)
159
+ int mpfi_acosh(mpfi_ptr, mpfi_srcptr)
160
+ int mpfi_asinh(mpfi_ptr, mpfi_srcptr)
161
+ int mpfi_atanh(mpfi_ptr, mpfi_srcptr)
162
+
163
+ int mpfi_log1p(mpfi_ptr, mpfi_srcptr)
164
+ int mpfi_expm1(mpfi_ptr, mpfi_srcptr)
165
+
166
+ int mpfi_log2(mpfi_ptr, mpfi_srcptr)
167
+ int mpfi_log10(mpfi_ptr, mpfi_srcptr)
168
+
169
+ int mpfi_const_log2(mpfi_ptr)
170
+ int mpfi_const_pi(mpfi_ptr)
171
+ int mpfi_const_euler(mpfi_ptr)
172
+
173
+ # Comparison functions
174
+ # Warning: the meaning of interval comparison is not clearly defined
175
+ # customizable comparison functions
176
+
177
+ int (*mpfi_cmp) (mpfi_srcptr, mpfi_srcptr)
178
+ int (*mpfi_cmp_d) (mpfi_srcptr, double)
179
+ int (*mpfi_cmp_ui) (mpfi_srcptr, unsigned long)
180
+ int (*mpfi_cmp_si) (mpfi_srcptr, long)
181
+ int (*mpfi_cmp_z) (mpfi_srcptr, mpz_srcptr)
182
+ int (*mpfi_cmp_q) (mpfi_srcptr, mpq_srcptr)
183
+ int (*mpfi_cmp_fr) (mpfi_srcptr, mpfr_srcptr)
184
+
185
+ bint (*mpfi_is_pos) (mpfi_srcptr)
186
+ bint (*mpfi_is_nonneg) (mpfi_srcptr)
187
+ bint (*mpfi_is_neg) (mpfi_srcptr)
188
+ bint (*mpfi_is_nonpos) (mpfi_srcptr)
189
+ bint (*mpfi_is_zero) (mpfi_srcptr)
190
+ bint (*mpfi_is_strictly_pos) (mpfi_srcptr)
191
+ bint (*mpfi_is_strictly_neg) (mpfi_srcptr)
192
+
193
+ bint mpfi_has_zero(mpfi_srcptr)
194
+
195
+ bint mpfi_nan_p(mpfi_srcptr)
196
+ bint mpfi_inf_p(mpfi_srcptr)
197
+ bint mpfi_bounded_p(mpfi_srcptr)
198
+
199
+ # Interval manipulation
200
+
201
+ # operations related to the internal representation by endpoints
202
+
203
+ # get left or right bound of the interval defined by the
204
+ # second argument and put the result in the first one
205
+ int mpfi_get_left(mpfr_ptr, mpfi_srcptr)
206
+ int mpfi_get_right(mpfr_ptr, mpfi_srcptr)
207
+
208
+ int mpfi_revert_if_needed(mpfi_ptr)
209
+
210
+ # Set operations on intervals
211
+ # "Convex hulls"
212
+ # extends the interval defined by the first argument
213
+ # so that it contains the second one
214
+
215
+ int mpfi_put(mpfi_ptr, mpfi_srcptr)
216
+ int mpfi_put_d(mpfi_ptr, double)
217
+ int mpfi_put_si(mpfi_ptr, long)
218
+ int mpfi_put_ui(mpfi_ptr, unsigned long)
219
+ int mpfi_put_z(mpfi_ptr, mpz_srcptr)
220
+ int mpfi_put_q(mpfi_ptr, mpq_srcptr)
221
+ int mpfi_put_fr(mpfi_ptr, mpfr_srcptr)
222
+
223
+ # builds an interval whose left bound is the lower (round -infty)
224
+ # than the second argument and the right bound is greater
225
+ # (round +infty) than the third one
226
+
227
+
228
+ int mpfi_interv_d(mpfi_ptr, double,double)
229
+ int mpfi_interv_si(mpfi_ptr, long,long)
230
+ int mpfi_interv_ui(mpfi_ptr, unsigned long,unsigned long)
231
+ int mpfi_interv_z(mpfi_ptr, mpz_srcptr,mpz_srcptr)
232
+ int mpfi_interv_q(mpfi_ptr, mpq_srcptr,mpq_srcptr)
233
+ int mpfi_interv_fr(mpfi_ptr, mpfr_srcptr,mpfr_srcptr)
234
+
235
+ # Inclusion tests
236
+ # tests if the first argument is inside the interval
237
+ # defined by the second one
238
+ bint mpfi_is_strictly_inside(mpfi_srcptr, mpfi_srcptr)
239
+ bint mpfi_is_inside(mpfi_srcptr, mpfi_srcptr)
240
+ bint mpfi_is_inside_d(double, mpfi_srcptr)
241
+ bint mpfi_is_inside_ui(unsigned long, mpfi_srcptr)
242
+ bint mpfi_is_inside_si(long, mpfi_srcptr)
243
+ bint mpfi_is_inside_z(mpz_srcptr, mpfi_srcptr)
244
+ bint mpfi_is_inside_q(mpq_srcptr, mpfi_srcptr)
245
+ bint mpfi_is_inside_fr(mpfr_srcptr, mpfi_srcptr)
246
+
247
+ # set operations
248
+ bint mpfi_is_empty(mpfi_srcptr)
249
+ int mpfi_intersect(mpfi_ptr, mpfi_srcptr, mpfi_srcptr)
250
+ int mpfi_union(mpfi_ptr, mpfi_srcptr, mpfi_srcptr)
251
+
252
+ # Miscellaneous
253
+
254
+ # adds the second argument to the right bound of the first one
255
+ # and subtracts the second argument to the left bound of
256
+ # the first one
257
+ int mpfi_increase(mpfi_ptr, mpfr_srcptr)
258
+ # keeps the same center and multiply the radius by 2*(1+fact)
259
+ int mpfi_blow(mpfi_ptr, mpfi_srcptr, double)
260
+ # splits the interval into 2 halves
261
+ int mpfi_bisect(mpfi_ptr, mpfi_ptr, mpfi_srcptr)
262
+
263
+ char * mpfi_get_version()
264
+
265
+ # Error handling
266
+ void mpfi_reset_error()
267
+ void mpfi_set_error(int)
268
+ int mpfi_is_error()
269
+
270
+ ctypedef enum mpfi_flags_exact:
271
+ MPFI_FLAGS_BOTH_ENDPOINTS_EXACT
272
+ MPFI_FLAGS_LEFT_ENDPOINT_INEXACT
273
+ MPFI_FLAGS_RIGHT_ENDPOINT_INEXACT
274
+ MPFI_FLAGS_BOTH_ENDPOINTS_INEXACT
275
+
276
+ bint MPFI_BOTH_ARE_EXACT(mpfi_flags_exact)
277
+ bint MPFI_LEFT_IS_INEXACT(mpfi_flags_exact)
278
+ bint MPFI_RIGHT_IS_INEXACT(mpfi_flags_exact)
279
+ bint MPFI_BOTH_ARE_INEXACT(mpfi_flags_exact)
280
+
281
+ mpfi_flags_exact MPFI_REVERT_INEXACT_FLAGS(mpfi_flags_exact)
282
+
283
+ bint MPFI_NAN_P(mpfi_srcptr)
284
+ bint MPFI_INF_P(mpfi_srcptr)
285
+ bint MPFI_IS_ZERO(mpfi_srcptr)
286
+
287
+ void MPFI_CLEAR(mpfi_ptr)
@@ -0,0 +1,10 @@
1
+ # sage_setup: distribution = sagemath-ntl
2
+ from sage.libs.mpfr.types cimport __mpfr_struct
3
+
4
+ cdef extern from "mpfi.h":
5
+ ctypedef struct __mpfi_struct:
6
+ __mpfr_struct left
7
+ __mpfr_struct right
8
+ ctypedef __mpfi_struct mpfi_t[1]
9
+ ctypedef __mpfi_struct* mpfi_ptr
10
+ ctypedef __mpfi_struct* mpfi_srcptr
sage/libs/ntl/GF2.pxd ADDED
@@ -0,0 +1,18 @@
1
+ # sage_setup: distribution = sagemath-ntl
2
+ from sage.libs.ntl.types cimport GF2_c
3
+
4
+
5
+ cdef extern from "ntlwrap.h":
6
+ int GF2_IsOne "IsOne"(GF2_c x)
7
+ int GF2_IsZero "IsZero"(GF2_c x)
8
+
9
+ void GF2_add "add"( GF2_c x, GF2_c a, GF2_c b)
10
+ void GF2_sub "sub"( GF2_c x, GF2_c a, GF2_c b)
11
+ void GF2_mul "mul"( GF2_c x, GF2_c a, GF2_c b)
12
+ void GF2_div "div"( GF2_c x, GF2_c a, GF2_c b)
13
+ void GF2_negate "NTL::negate"(GF2_c x, GF2_c a)
14
+ void GF2_power "NTL::power"(GF2_c t, GF2_c x, long e)
15
+ long GF2_deg "deg"(GF2_c x)
16
+
17
+ void GF2_conv_long "conv" (GF2_c x, long i)
18
+ long GF2_conv_to_long "rep" (GF2_c x)