passagemath-ntl 10.6.36__cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (161) hide show
  1. passagemath_ntl-10.6.36.dist-info/METADATA +122 -0
  2. passagemath_ntl-10.6.36.dist-info/RECORD +161 -0
  3. passagemath_ntl-10.6.36.dist-info/WHEEL +6 -0
  4. passagemath_ntl-10.6.36.dist-info/top_level.txt +2 -0
  5. passagemath_ntl.libs/libgf2x-fbd36f80.so.3.0.0 +0 -0
  6. passagemath_ntl.libs/libgmp-93ebf16a.so.10.5.0 +0 -0
  7. passagemath_ntl.libs/libmpfi-ad12a86d.so.0.0.0 +0 -0
  8. passagemath_ntl.libs/libmpfr-9d41ebf1.so.6.2.1 +0 -0
  9. passagemath_ntl.libs/libntl-0043a3a2.so.44.0.1 +0 -0
  10. sage/all__sagemath_ntl.py +7 -0
  11. sage/libs/all__sagemath_ntl.py +3 -0
  12. sage/libs/mpfi/__init__.pxd +287 -0
  13. sage/libs/mpfi/types.pxd +10 -0
  14. sage/libs/ntl/GF2.pxd +18 -0
  15. sage/libs/ntl/GF2E.pxd +28 -0
  16. sage/libs/ntl/GF2EX.pxd +12 -0
  17. sage/libs/ntl/GF2X.pxd +81 -0
  18. sage/libs/ntl/ZZ.pxd +93 -0
  19. sage/libs/ntl/ZZX.pxd +85 -0
  20. sage/libs/ntl/ZZ_p.pxd +28 -0
  21. sage/libs/ntl/ZZ_pE.pxd +37 -0
  22. sage/libs/ntl/ZZ_pEX.pxd +106 -0
  23. sage/libs/ntl/ZZ_pX.pxd +122 -0
  24. sage/libs/ntl/__init__.py +4 -0
  25. sage/libs/ntl/all.py +72 -0
  26. sage/libs/ntl/conversion.pxd +106 -0
  27. sage/libs/ntl/convert.cpython-314t-aarch64-linux-gnu.so +0 -0
  28. sage/libs/ntl/convert.pxd +7 -0
  29. sage/libs/ntl/convert.pyx +38 -0
  30. sage/libs/ntl/decl.pxi +18 -0
  31. sage/libs/ntl/error.cpython-314t-aarch64-linux-gnu.so +0 -0
  32. sage/libs/ntl/error.pyx +63 -0
  33. sage/libs/ntl/lzz_p.pxd +20 -0
  34. sage/libs/ntl/lzz_pX.pxd +59 -0
  35. sage/libs/ntl/mat_GF2.pxd +30 -0
  36. sage/libs/ntl/mat_GF2E.pxd +30 -0
  37. sage/libs/ntl/mat_ZZ.pxd +59 -0
  38. sage/libs/ntl/misc.pxi +33 -0
  39. sage/libs/ntl/ntl_GF2.cpython-314t-aarch64-linux-gnu.so +0 -0
  40. sage/libs/ntl/ntl_GF2.pxd +5 -0
  41. sage/libs/ntl/ntl_GF2.pyx +281 -0
  42. sage/libs/ntl/ntl_GF2E.cpython-314t-aarch64-linux-gnu.so +0 -0
  43. sage/libs/ntl/ntl_GF2E.pxd +8 -0
  44. sage/libs/ntl/ntl_GF2E.pyx +488 -0
  45. sage/libs/ntl/ntl_GF2EContext.cpython-314t-aarch64-linux-gnu.so +0 -0
  46. sage/libs/ntl/ntl_GF2EContext.pxd +9 -0
  47. sage/libs/ntl/ntl_GF2EContext.pyx +134 -0
  48. sage/libs/ntl/ntl_GF2EX.cpython-314t-aarch64-linux-gnu.so +0 -0
  49. sage/libs/ntl/ntl_GF2EX.pxd +10 -0
  50. sage/libs/ntl/ntl_GF2EX.pyx +251 -0
  51. sage/libs/ntl/ntl_GF2X.cpython-314t-aarch64-linux-gnu.so +0 -0
  52. sage/libs/ntl/ntl_GF2X.pxd +5 -0
  53. sage/libs/ntl/ntl_GF2X.pyx +771 -0
  54. sage/libs/ntl/ntl_GF2X_linkage.pxi +404 -0
  55. sage/libs/ntl/ntl_ZZ.cpython-314t-aarch64-linux-gnu.so +0 -0
  56. sage/libs/ntl/ntl_ZZ.pxd +7 -0
  57. sage/libs/ntl/ntl_ZZ.pyx +541 -0
  58. sage/libs/ntl/ntl_ZZX.cpython-314t-aarch64-linux-gnu.so +0 -0
  59. sage/libs/ntl/ntl_ZZX.pxd +7 -0
  60. sage/libs/ntl/ntl_ZZX.pyx +1206 -0
  61. sage/libs/ntl/ntl_ZZ_p.cpython-314t-aarch64-linux-gnu.so +0 -0
  62. sage/libs/ntl/ntl_ZZ_p.pxd +10 -0
  63. sage/libs/ntl/ntl_ZZ_p.pyx +509 -0
  64. sage/libs/ntl/ntl_ZZ_pContext.cpython-314t-aarch64-linux-gnu.so +0 -0
  65. sage/libs/ntl/ntl_ZZ_pContext.pxd +22 -0
  66. sage/libs/ntl/ntl_ZZ_pContext.pyx +201 -0
  67. sage/libs/ntl/ntl_ZZ_pE.cpython-314t-aarch64-linux-gnu.so +0 -0
  68. sage/libs/ntl/ntl_ZZ_pE.pxd +11 -0
  69. sage/libs/ntl/ntl_ZZ_pE.pyx +349 -0
  70. sage/libs/ntl/ntl_ZZ_pEContext.cpython-314t-aarch64-linux-gnu.so +0 -0
  71. sage/libs/ntl/ntl_ZZ_pEContext.pxd +23 -0
  72. sage/libs/ntl/ntl_ZZ_pEContext.pyx +226 -0
  73. sage/libs/ntl/ntl_ZZ_pEX.cpython-314t-aarch64-linux-gnu.so +0 -0
  74. sage/libs/ntl/ntl_ZZ_pEX.pxd +10 -0
  75. sage/libs/ntl/ntl_ZZ_pEX.pyx +1255 -0
  76. sage/libs/ntl/ntl_ZZ_pEX_linkage.pxi +420 -0
  77. sage/libs/ntl/ntl_ZZ_pX.cpython-314t-aarch64-linux-gnu.so +0 -0
  78. sage/libs/ntl/ntl_ZZ_pX.pxd +17 -0
  79. sage/libs/ntl/ntl_ZZ_pX.pyx +1532 -0
  80. sage/libs/ntl/ntl_lzz_p.cpython-314t-aarch64-linux-gnu.so +0 -0
  81. sage/libs/ntl/ntl_lzz_p.pxd +8 -0
  82. sage/libs/ntl/ntl_lzz_p.pyx +440 -0
  83. sage/libs/ntl/ntl_lzz_pContext.cpython-314t-aarch64-linux-gnu.so +0 -0
  84. sage/libs/ntl/ntl_lzz_pContext.pxd +7 -0
  85. sage/libs/ntl/ntl_lzz_pContext.pyx +137 -0
  86. sage/libs/ntl/ntl_lzz_pX.cpython-314t-aarch64-linux-gnu.so +0 -0
  87. sage/libs/ntl/ntl_lzz_pX.pxd +10 -0
  88. sage/libs/ntl/ntl_lzz_pX.pyx +902 -0
  89. sage/libs/ntl/ntl_mat_GF2.cpython-314t-aarch64-linux-gnu.so +0 -0
  90. sage/libs/ntl/ntl_mat_GF2.pxd +8 -0
  91. sage/libs/ntl/ntl_mat_GF2.pyx +612 -0
  92. sage/libs/ntl/ntl_mat_GF2E.cpython-314t-aarch64-linux-gnu.so +0 -0
  93. sage/libs/ntl/ntl_mat_GF2E.pxd +10 -0
  94. sage/libs/ntl/ntl_mat_GF2E.pyx +752 -0
  95. sage/libs/ntl/ntl_mat_ZZ.cpython-314t-aarch64-linux-gnu.so +0 -0
  96. sage/libs/ntl/ntl_mat_ZZ.pxd +6 -0
  97. sage/libs/ntl/ntl_mat_ZZ.pyx +1523 -0
  98. sage/libs/ntl/ntl_tools.pxd +3 -0
  99. sage/libs/ntl/ntlwrap.h +53 -0
  100. sage/libs/ntl/ntlwrap_impl.h +743 -0
  101. sage/libs/ntl/types.pxd +157 -0
  102. sage/libs/ntl/vec_GF2.pxd +26 -0
  103. sage/libs/ntl/vec_GF2E.pxd +2 -0
  104. sage/matrix/all__sagemath_ntl.py +1 -0
  105. sage/matrix/matrix_modn_dense_double.pxd +10 -0
  106. sage/matrix/matrix_modn_dense_float.pxd +9 -0
  107. sage/matrix/matrix_modn_dense_template.pxi +3257 -0
  108. sage/matrix/matrix_modn_dense_template_header.pxi +15 -0
  109. sage/matrix/matrix_modn_sparse.pxd +8 -0
  110. sage/misc/all__sagemath_ntl.py +1 -0
  111. sage/rings/all__sagemath_ntl.py +7 -0
  112. sage/rings/bernmm.cpython-314t-aarch64-linux-gnu.so +0 -0
  113. sage/rings/bernmm.pyx +161 -0
  114. sage/rings/bernoulli_mod_p.cpython-314t-aarch64-linux-gnu.so +0 -0
  115. sage/rings/bernoulli_mod_p.pyx +313 -0
  116. sage/rings/finite_rings/all__sagemath_ntl.py +1 -0
  117. sage/rings/finite_rings/finite_field_ntl_gf2e.py +305 -0
  118. sage/rings/finite_rings/residue_field_ntl_gf2e.cpython-314t-aarch64-linux-gnu.so +0 -0
  119. sage/rings/finite_rings/residue_field_ntl_gf2e.pyx +140 -0
  120. sage/rings/padics/all__sagemath_ntl.py +5 -0
  121. sage/rings/padics/padic_ZZ_pX_CA_element.cpython-314t-aarch64-linux-gnu.so +0 -0
  122. sage/rings/padics/padic_ZZ_pX_CA_element.pxd +25 -0
  123. sage/rings/padics/padic_ZZ_pX_CA_element.pyx +2368 -0
  124. sage/rings/padics/padic_ZZ_pX_CR_element.cpython-314t-aarch64-linux-gnu.so +0 -0
  125. sage/rings/padics/padic_ZZ_pX_CR_element.pxd +33 -0
  126. sage/rings/padics/padic_ZZ_pX_CR_element.pyx +3277 -0
  127. sage/rings/padics/padic_ZZ_pX_FM_element.cpython-314t-aarch64-linux-gnu.so +0 -0
  128. sage/rings/padics/padic_ZZ_pX_FM_element.pxd +12 -0
  129. sage/rings/padics/padic_ZZ_pX_FM_element.pyx +1739 -0
  130. sage/rings/padics/padic_ZZ_pX_element.cpython-314t-aarch64-linux-gnu.so +0 -0
  131. sage/rings/padics/padic_ZZ_pX_element.pxd +6 -0
  132. sage/rings/padics/padic_ZZ_pX_element.pyx +919 -0
  133. sage/rings/padics/padic_ext_element.cpython-314t-aarch64-linux-gnu.so +0 -0
  134. sage/rings/padics/padic_ext_element.pxd +38 -0
  135. sage/rings/padics/padic_ext_element.pyx +512 -0
  136. sage/rings/padics/pow_computer_ext.cpython-314t-aarch64-linux-gnu.so +0 -0
  137. sage/rings/padics/pow_computer_ext.pxd +107 -0
  138. sage/rings/padics/pow_computer_ext.pyx +2401 -0
  139. sage/rings/polynomial/all__sagemath_ntl.py +1 -0
  140. sage/rings/polynomial/evaluation_ntl.cpython-314t-aarch64-linux-gnu.so +0 -0
  141. sage/rings/polynomial/evaluation_ntl.pxd +7 -0
  142. sage/rings/polynomial/evaluation_ntl.pyx +70 -0
  143. sage/rings/polynomial/polynomial_gf2x.cpython-314t-aarch64-linux-gnu.so +0 -0
  144. sage/rings/polynomial/polynomial_gf2x.pxd +10 -0
  145. sage/rings/polynomial/polynomial_gf2x.pyx +364 -0
  146. sage/rings/polynomial/polynomial_integer_dense_ntl.cpython-314t-aarch64-linux-gnu.so +0 -0
  147. sage/rings/polynomial/polynomial_integer_dense_ntl.pxd +8 -0
  148. sage/rings/polynomial/polynomial_integer_dense_ntl.pyx +1128 -0
  149. sage/rings/polynomial/polynomial_modn_dense_ntl.cpython-314t-aarch64-linux-gnu.so +0 -0
  150. sage/rings/polynomial/polynomial_modn_dense_ntl.pxd +36 -0
  151. sage/rings/polynomial/polynomial_modn_dense_ntl.pyx +2049 -0
  152. sage/rings/polynomial/polynomial_template.pxi +842 -0
  153. sage/rings/polynomial/polynomial_template_header.pxi +11 -0
  154. sage/rings/polynomial/polynomial_zz_pex.cpython-314t-aarch64-linux-gnu.so +0 -0
  155. sage/rings/polynomial/polynomial_zz_pex.pxd +12 -0
  156. sage/rings/polynomial/polynomial_zz_pex.pyx +778 -0
  157. sage/rings/real_mpfi.pxd +50 -0
  158. sage/schemes/all__sagemath_ntl.py +1 -0
  159. sage/schemes/hyperelliptic_curves/all__sagemath_ntl.py +1 -0
  160. sage/schemes/hyperelliptic_curves/hypellfrob.cpython-314t-aarch64-linux-gnu.so +0 -0
  161. 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.36
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.36.0
36
+ Requires-Dist: passagemath-categories~=10.6.36.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,161 @@
1
+ passagemath_ntl.libs/libgf2x-fbd36f80.so.3.0.0,sha256=ghiNCOG3X9WUVunXdSbxLLKexidJV4JmaAmU0nIcbAs,330433
2
+ passagemath_ntl.libs/libgmp-93ebf16a.so.10.5.0,sha256=J_oguU4vvekVCVuY5w0xJjRsPinQWaZ9HqUVq6yFhas,668537
3
+ passagemath_ntl.libs/libmpfi-ad12a86d.so.0.0.0,sha256=V9lE1mSPsHFELRZ_kZVmMVpdBNau-ShuBgj4Fc3M2dk,793009
4
+ passagemath_ntl.libs/libmpfr-9d41ebf1.so.6.2.1,sha256=FOAwd1MXi2r6neQQ8hK2PLPyEaTxHfBd-h6phIuPp0U,932097
5
+ passagemath_ntl.libs/libntl-0043a3a2.so.44.0.1,sha256=Eu2aJF-gU3DZGc733lg8jDMYsEt44i3jr-zmboWQWhw,3010089
6
+ sage/all__sagemath_ntl.py,sha256=7LJBulOjrbpZ4bRI38kEYnyP7RTnIQ7nLuGT504of_k,189
7
+ sage/libs/all__sagemath_ntl.py,sha256=4bSDDgoHtBmLGLPls4uV8qUN8io7Lrw91M-CmErR0As,75
8
+ sage/libs/mpfi/__init__.pxd,sha256=tFPwUUwfLfPuStcKuoWZQ9_jVij0pQGVg8YQw0ymOT4,10810
9
+ sage/libs/mpfi/types.pxd,sha256=FdLs-uOjDxf8QlpiH9ZwsUz86Uau0EcCmWPmdOz74Gw,322
10
+ sage/libs/ntl/GF2.pxd,sha256=_GWR_LjjRpwYC4uBT1Dxe_CCjYb9XJS8xf59yiRHqLA,623
11
+ sage/libs/ntl/GF2E.pxd,sha256=UYn4FKhIqgWoQy0_FAd5zlxUMhqQI6lZoLbQimH5070,1005
12
+ sage/libs/ntl/GF2EX.pxd,sha256=DQj7I2URYMXWO7Cuxlrp8AvH1I7iDFOZvCGIHV6rJ8A,494
13
+ sage/libs/ntl/GF2X.pxd,sha256=TBqzoupmbUyy5SNvjASTsZ4_0-vEm44U03tIXUN2fmI,3712
14
+ sage/libs/ntl/ZZ.pxd,sha256=irjDJbQAi07Nsf7vlYJW9IRdsQmDbGQibD2kjjU47vg,3749
15
+ sage/libs/ntl/ZZX.pxd,sha256=1VT4ud4WbN0h8pihX2s34xl7fkyU44pisrPE0I8z2lE,3483
16
+ sage/libs/ntl/ZZ_p.pxd,sha256=ALtg0LJogD9oU9cSiAdiI0TdtL8B54xlMWy9rbnvsQs,1009
17
+ sage/libs/ntl/ZZ_pE.pxd,sha256=a-udUybj_bbZWqvf2hrQeFvQZu_T97t-FnzWD6M6QCs,1749
18
+ sage/libs/ntl/ZZ_pEX.pxd,sha256=vTVZgPQBLRnuwI5RR-bYuxHu5m_gZzoVDN8HUsURXCc,5540
19
+ sage/libs/ntl/ZZ_pX.pxd,sha256=LUYDS74WrRAvr2JEcVzL_PF1QiCtPYuR6nSdrLwVBaA,6510
20
+ sage/libs/ntl/__init__.py,sha256=j-YpcXAXkylLGSQbxuFWIiBBt4h5--gft0rB-gt2opc,127
21
+ sage/libs/ntl/all.py,sha256=rNXkK2wpOQ4e0xMzdHVDx_SvzToh9bmCIlkqyhb698s,2286
22
+ sage/libs/ntl/conversion.pxd,sha256=--FH5p7qTF7pvX5ID8QOiP0lqbBsVmwgraHjJ6fn5ME,3591
23
+ sage/libs/ntl/convert.cpython-314t-aarch64-linux-gnu.so,sha256=vsE3d9jukK5AvUqEKR1CVtTRege2IrFy4S3Rfm--hE0,463329
24
+ sage/libs/ntl/convert.pxd,sha256=__hz49kJMXA4Nx1zNSVvklsZV3TY-VMNJuORU7V6BGA,289
25
+ sage/libs/ntl/convert.pyx,sha256=Y-Bg3h8wYVZJVINBegvsh7jPjYvWlAAjQLR4f_rlf-w,1355
26
+ sage/libs/ntl/decl.pxi,sha256=9Bg-6UE0Zr0wQpfnGgfVcUP_KkJ7HAmnhxoaz-Tl2SM,660
27
+ sage/libs/ntl/error.cpython-314t-aarch64-linux-gnu.so,sha256=oZEQ6AaCfwr_KayEDW5aAVQnAilxOT2ZkTHu0w_-GA8,463169
28
+ sage/libs/ntl/error.pyx,sha256=2nqfOXIZaV43mOqAQgViklJ2vVnAtCNbkHrdy-NLygY,1769
29
+ sage/libs/ntl/lzz_p.pxd,sha256=wfV-gQ853XbzsVYfhnKI1iorYP8ts_SoJbnxy-f0ZZU,803
30
+ sage/libs/ntl/lzz_pX.pxd,sha256=rjZrFngWqwsnbPWqmGV60B0nMFTXhp29c08mZRUvQU4,3343
31
+ sage/libs/ntl/mat_GF2.pxd,sha256=X6BVVawJLQiOEB-N-GwxUuLP_yi1diyYs_5tDxL8OUI,1291
32
+ sage/libs/ntl/mat_GF2E.pxd,sha256=e3l-QC_X8dZqcThA-b9oxiSG3WAw4B48e39Yso1pOSQ,1352
33
+ sage/libs/ntl/mat_ZZ.pxd,sha256=uYefAGmI34B9uHUx0Ar_ubwf56sdXOf22LXYme3aEf4,5172
34
+ sage/libs/ntl/misc.pxi,sha256=URBgZg1VKjZIxWkZPzhm4DX66XjbaU5-eGuZbUEwJZ4,1017
35
+ sage/libs/ntl/ntl_GF2.cpython-314t-aarch64-linux-gnu.so,sha256=ai1QlFGR8enzhqG09jSW0lJXgK5Sh8PaytGhAHA1KmY,1055601
36
+ sage/libs/ntl/ntl_GF2.pxd,sha256=IR3S8tjHGG0XGxGSUuceq_w92WycIHjJUE4JsY0qe6s,121
37
+ sage/libs/ntl/ntl_GF2.pyx,sha256=Qxl5AAm2W6u1_ueAH3GA-6qFvLTgL4WNLjOnWfuJ0lo,7162
38
+ sage/libs/ntl/ntl_GF2E.cpython-314t-aarch64-linux-gnu.so,sha256=YJvNwrdmwk0Dt4YgZTmxAmc6DRsfkSSeZ2vUzqLatlk,1252641
39
+ sage/libs/ntl/ntl_GF2E.pxd,sha256=zLIBEc7VM08Ybl9sNBYNZbh_KCpOEDBCCpJaB9zQ8Rw,251
40
+ sage/libs/ntl/ntl_GF2E.pyx,sha256=Cc0NpDPaISS6BiavcM6Ts7ZMSRvLj3QxaKL39AXcWM4,14855
41
+ sage/libs/ntl/ntl_GF2EContext.cpython-314t-aarch64-linux-gnu.so,sha256=_FTseZzg6nWHp1J1YeCHbfq-MTW-WDB5EpcZuDCIjpk,792553
42
+ sage/libs/ntl/ntl_GF2EContext.pxd,sha256=svKsYU12jLjEbfpJV_xvNrq_OvWrB5f_9NGRtLMTGEM,283
43
+ sage/libs/ntl/ntl_GF2EContext.pyx,sha256=jrrvW75Fz7qUpzl_Uya5JwEzq5kV8niGdfK1ziapz2A,3740
44
+ sage/libs/ntl/ntl_GF2EX.cpython-314t-aarch64-linux-gnu.so,sha256=aT-EyDRIha5_nvJkZDPP4I7EB8DQ1m_RMpBNpBEa0RQ,990305
45
+ sage/libs/ntl/ntl_GF2EX.pxd,sha256=9oi1SHQo2lUY3xXJXtVQnCOXaktFY1XUVx0gNPLTB-I,337
46
+ sage/libs/ntl/ntl_GF2EX.pyx,sha256=7oiuWMV9UfU1Du2kNe9ubY5IwtsaRrILMjqusEF9AoY,7954
47
+ sage/libs/ntl/ntl_GF2X.cpython-314t-aarch64-linux-gnu.so,sha256=awJtfpbe1XkZIKWOPfHMEFHlTZXeXuoA1VcYpmRTYFc,1521001
48
+ sage/libs/ntl/ntl_GF2X.pxd,sha256=pwc5TYbB4b9L9XSZjQwP89XSPVbhADbUYhH2aUSw9ys,124
49
+ sage/libs/ntl/ntl_GF2X.pyx,sha256=KTtkNna5dLG5CHAuPedG0_6O7pAjUqZ5U-uoPXtI3Nk,20622
50
+ sage/libs/ntl/ntl_GF2X_linkage.pxi,sha256=Rw8Hsy6c0RBLjZ-ceApgxvg_npveektTcc_6YJ0IH6k,9257
51
+ sage/libs/ntl/ntl_ZZ.cpython-314t-aarch64-linux-gnu.so,sha256=Spzj-phji2egtXjzB6eITThlajWqijkTbqLb6t9bsSc,1449761
52
+ sage/libs/ntl/ntl_ZZ.pxd,sha256=ohJDLDrmZ7jMduDRL5etPIZ87IxxRMjl745Gmge-HcU,224
53
+ sage/libs/ntl/ntl_ZZ.pyx,sha256=H1FaXuoHeXWObkmaGVEgF-WJV2gn8-uNph55bv8rxPA,13944
54
+ sage/libs/ntl/ntl_ZZX.cpython-314t-aarch64-linux-gnu.so,sha256=iNcgmxLPIL4ujuslsRjjhcWZQLoAeS4HpxCO93OaIIk,1713257
55
+ sage/libs/ntl/ntl_ZZX.pxd,sha256=XNGOxAPE9B06O45QucckJaB-fCOtIdxfoN3eHC7Rw_g,253
56
+ sage/libs/ntl/ntl_ZZX.pyx,sha256=DWW2OrRej4B-DBgiyOuqshLnYn_1wwqVpTe2qUHmNdY,34730
57
+ sage/libs/ntl/ntl_ZZ_p.cpython-314t-aarch64-linux-gnu.so,sha256=ZAzzQiZaeXecQF_MvPGUW-dwFhgjxloxMUee0jLDUxs,1449601
58
+ sage/libs/ntl/ntl_ZZ_p.pxd,sha256=erL2upd1kw4EhJB_QcdjoZWECdsfm-pfiHhOXLVZ1m0,361
59
+ sage/libs/ntl/ntl_ZZ_p.pyx,sha256=5n3o7aABf7wGcO2BDFdJDNlq8a75RyMV2sm6ZqEjY5k,14606
60
+ sage/libs/ntl/ntl_ZZ_pContext.cpython-314t-aarch64-linux-gnu.so,sha256=CYiXrZeReYWDI0C6U-3QCFGvjuADwUJiuni5duzGoFM,990193
61
+ sage/libs/ntl/ntl_ZZ_pContext.pxd,sha256=2warqallT_WALnd5j3q1lsPvKto4lIp8GDNBcA6C5p4,615
62
+ sage/libs/ntl/ntl_ZZ_pContext.pyx,sha256=ZCmjdoImf2tE1yNQXGfhoTynsOFQnM0ff68qkGN-FaU,5719
63
+ sage/libs/ntl/ntl_ZZ_pE.cpython-314t-aarch64-linux-gnu.so,sha256=xvOlucq8oKLjT0ibI8JstoUc9rmZ2YJqIMj1VqM6U7M,1383769
64
+ sage/libs/ntl/ntl_ZZ_pE.pxd,sha256=IA7GemK36SNKPT1kaCJw5Vl8sHTaZMThLF-ZVa6-GZ8,424
65
+ sage/libs/ntl/ntl_ZZ_pE.pyx,sha256=ZJXEDdwYYxdIvooXJOQ5qJr3ESdbJwgLIo1DwT0Ljks,11630
66
+ sage/libs/ntl/ntl_ZZ_pEContext.cpython-314t-aarch64-linux-gnu.so,sha256=QGE9Agh0Rt1nHKsVdhRGN8VxBdujPTv4wilN2wQ9U5Q,1121313
67
+ sage/libs/ntl/ntl_ZZ_pEContext.pxd,sha256=p1NTT_EoJYzjSwxsYRS4SEmo70gQksE4zUqrzDB4Pf4,696
68
+ sage/libs/ntl/ntl_ZZ_pEContext.pyx,sha256=QRfwU53L_ClBmrOlSxObZ5EstBdSXTNsEg6KL4NztO4,7213
69
+ sage/libs/ntl/ntl_ZZ_pEX.cpython-314t-aarch64-linux-gnu.so,sha256=92Vz25sRYoNQHmFGCY0VY008zXa-VaYxz9zLkdAsqVU,1647345
70
+ sage/libs/ntl/ntl_ZZ_pEX.pxd,sha256=4Q36m179SjB4lysxFo2_RJ2OFt1GfbuD8qd6z_ksODI,382
71
+ sage/libs/ntl/ntl_ZZ_pEX.pyx,sha256=rH1QkVjw_FrXcc9bLUx4Iz4txaYMwibPCxSLATNY2Do,39881
72
+ sage/libs/ntl/ntl_ZZ_pEX_linkage.pxi,sha256=Yu6Y6vEHwPMhgG-aGvHmrR36ExuO3ho6a8UTGBW8kNw,12462
73
+ sage/libs/ntl/ntl_ZZ_pX.cpython-314t-aarch64-linux-gnu.so,sha256=rJK2kN8RCSkux20YYr558edywxIXuezoPztNEumqnwo,2179769
74
+ sage/libs/ntl/ntl_ZZ_pX.pxd,sha256=f8YDnsRc-gwc6ci5Bkzg06OUDuNqawF6nb-hQ6Py4yo,634
75
+ sage/libs/ntl/ntl_ZZ_pX.pyx,sha256=Pp7y0mGUJ8XzgrxepybuvUg-BBOIorDsHt9tzo5Kl0k,45735
76
+ sage/libs/ntl/ntl_lzz_p.cpython-314t-aarch64-linux-gnu.so,sha256=wVT0ZFfR_LNIAaQXtv1n2ZyW06FPyqUMiqnSTUBS8iY,1251161
77
+ sage/libs/ntl/ntl_lzz_p.pxd,sha256=jvw29tbLHXgqzJxAHzUiHFl39VwMGNCwUA6wtgO8azo,256
78
+ sage/libs/ntl/ntl_lzz_p.pyx,sha256=KMj3wXCoNjQTVbAZA0X-UGD2y82UEvnrorhcE3qvuxA,12532
79
+ sage/libs/ntl/ntl_lzz_pContext.cpython-314t-aarch64-linux-gnu.so,sha256=EZAMcg5VN6fa3v0c5Ja4O2pfEAXoNjnRowTWH6Lcjaw,922801
80
+ sage/libs/ntl/ntl_lzz_pContext.pxd,sha256=IKI_F9hR1UDR_zVB6OJQxdzKvc0bkDfPxXrPnEf4OgE,206
81
+ sage/libs/ntl/ntl_lzz_pContext.pyx,sha256=D4d0MZNTtJoapgEPgFhuThYe2dih7XOp2C94TvbIq1U,3864
82
+ sage/libs/ntl/ntl_lzz_pX.cpython-314t-aarch64-linux-gnu.so,sha256=ocH85_MZnlqIy9Ek8iMVXXKa6GvOyWXzxJYhtddfiLA,1453777
83
+ sage/libs/ntl/ntl_lzz_pX.pxd,sha256=fOleR2UZOMLpyPnlnihcSWA48H2JF4hqtFmNccVxe9o,287
84
+ sage/libs/ntl/ntl_lzz_pX.pyx,sha256=bGklyElTFmYJEq6vTR8M_1iXm2g1ZSt5z-hTD-X4QtA,26269
85
+ sage/libs/ntl/ntl_mat_GF2.cpython-314t-aarch64-linux-gnu.so,sha256=RjYr2u5ExW8Z37qsDYfDrnx2R98mm0uhXRm3NNZ_Wr0,1515449
86
+ sage/libs/ntl/ntl_mat_GF2.pxd,sha256=VijyibgLkZO2dtruyVnc3tV589-z6yU7Idp8wkyDDfA,244
87
+ sage/libs/ntl/ntl_mat_GF2.pyx,sha256=TSQsBp4SUCEwiiON1a1RQTdeF8F8z1cEticWMg-vPqU,17387
88
+ sage/libs/ntl/ntl_mat_GF2E.cpython-314t-aarch64-linux-gnu.so,sha256=o4X3k6RIYJuM83jFAI5r0gPQ6m4xE8Zln0ZbF2UaPls,1586241
89
+ sage/libs/ntl/ntl_mat_GF2E.pxd,sha256=obVNeKOcx8ZzvDNjmo5qUceFBsvTnO4BHIJlcvR5j6c,349
90
+ sage/libs/ntl/ntl_mat_GF2E.pyx,sha256=ZgtfxhLaWEqZuPYYq-k9r8kDRe6gFiIG4dfyorXC2js,24168
91
+ sage/libs/ntl/ntl_mat_ZZ.cpython-314t-aarch64-linux-gnu.so,sha256=JmY6c1joiYMCS5ctJUXhpJKdW6s4I_3E_mYXAIiOlvY,2047345
92
+ sage/libs/ntl/ntl_mat_ZZ.pxd,sha256=Y7EwFaF-ovG4Ndk4_5T_zK-SckZ14b8CX2IA9UN-9e0,161
93
+ sage/libs/ntl/ntl_mat_ZZ.pyx,sha256=8voaX61_Rt6nBn1lW2aAvx-HnpfkCeI1SapYGWBlEDI,53556
94
+ sage/libs/ntl/ntl_tools.pxd,sha256=3bpFmnnO8uXTLbc-ECMjzE-vjzbBYxZlMdU5yAUwEZc,142
95
+ sage/libs/ntl/ntlwrap.h,sha256=Pjd7xuzY9OmMfx7O0oUQRXkXvZ6Qy4jIEOtlbddnsQU,1228
96
+ sage/libs/ntl/ntlwrap_impl.h,sha256=xbkwT7dHS0e5woE1VgC7ZRdzAhRsxFGJcokwywMY2fg,17973
97
+ sage/libs/ntl/types.pxd,sha256=skz4zW76stK19tjyZLKvDdmWb0igyqCAQvEXPjK4zHQ,4041
98
+ sage/libs/ntl/vec_GF2.pxd,sha256=7bakyBtL-0W-jRPsGB84n6upoOHS1avWZfVi8TGfRIM,1093
99
+ sage/libs/ntl/vec_GF2E.pxd,sha256=252Pb3-9l6eYbAnRMGwIP6SNtwu4XnbcjRvC085Lrm4,86
100
+ sage/matrix/all__sagemath_ntl.py,sha256=Xwyux1QrLqYdsoF00d1SE1oXhFs5WGrg-2EvcGo2vHg,42
101
+ sage/matrix/matrix_modn_dense_double.pxd,sha256=qBNg45CyeCEKeqmHU6tVjWtFfxuO-dTxVysD-miIjFo,321
102
+ sage/matrix/matrix_modn_dense_float.pxd,sha256=NZ3z0GTv0_q1GZQ528bdfYjX_E70DJHlgeKLf7RMbhE,283
103
+ sage/matrix/matrix_modn_dense_template.pxi,sha256=c_DM8kBexHD0sfiHtBBqNUZOJMdyX4Ducpa1fR9H5IY,106062
104
+ sage/matrix/matrix_modn_dense_template_header.pxi,sha256=fC-nHtUaAqKGu6FhnLE9CGljPyM7Rh6u3YOvSWmcpSg,516
105
+ sage/matrix/matrix_modn_sparse.pxd,sha256=FfVdVKP06I8r-V513j0kus5FkyGGbBqKskU2GwpH7NM,299
106
+ sage/misc/all__sagemath_ntl.py,sha256=Xwyux1QrLqYdsoF00d1SE1oXhFs5WGrg-2EvcGo2vHg,42
107
+ sage/rings/all__sagemath_ntl.py,sha256=l6oLjcHmqz6fbHBAm-cqE3toKyfSJ0LFCXQZhUZe8_U,224
108
+ sage/rings/bernmm.cpython-314t-aarch64-linux-gnu.so,sha256=j4Fkt4frLfMzgw7vxjLAtpKjCowiGzW0hbxrxNBXZzI,1055145
109
+ sage/rings/bernmm.pyx,sha256=GU840d0toDlqzcXHPDdH7_MYBWoy7EfDUr8hB6Re_xU,4826
110
+ sage/rings/bernoulli_mod_p.cpython-314t-aarch64-linux-gnu.so,sha256=Ht10m1CNDDtBze5CIdZumNqkwK9dTyR0hXm5kmhqyeE,1053673
111
+ sage/rings/bernoulli_mod_p.pyx,sha256=uHy-t2vxbhYlRJhAMO0cOKSbSiRsdZ2ZIqD1Xaclt7U,8677
112
+ sage/rings/real_mpfi.pxd,sha256=EmXlZ4HBJvrHyUsLGxYEO-Da44mOUo5cLkVkdK4QK_I,2275
113
+ sage/rings/finite_rings/all__sagemath_ntl.py,sha256=Xwyux1QrLqYdsoF00d1SE1oXhFs5WGrg-2EvcGo2vHg,42
114
+ sage/rings/finite_rings/finite_field_ntl_gf2e.py,sha256=8zRWQ8ntdG99vtTPi7x-bzgeBi59Pxv49YYdLtXuU2Q,8897
115
+ sage/rings/finite_rings/residue_field_ntl_gf2e.cpython-314t-aarch64-linux-gnu.so,sha256=Pd9DbT5DdHLuklcXK39Z7N7huSEv7CoKN7rBgrnrD2w,752976
116
+ sage/rings/finite_rings/residue_field_ntl_gf2e.pyx,sha256=7SnhSWOlQ9KAOUPuVKBeRzHIO2MyJ31GT_Teme7loSo,5582
117
+ sage/rings/padics/all__sagemath_ntl.py,sha256=E-LUA5MTppI03uZJnp1dSC05Tc3WpOV2OAP3sngARoI,170
118
+ sage/rings/padics/padic_ZZ_pX_CA_element.cpython-314t-aarch64-linux-gnu.so,sha256=SSDYs6d0hsr-et7nHQsBfnRsFT95RPnO59icBqMLRCI,2500313
119
+ sage/rings/padics/padic_ZZ_pX_CA_element.pxd,sha256=bDZkmJ5fhwFPmNsouX9TKZE3IionhV6AyoqO91yZhoU,1072
120
+ sage/rings/padics/padic_ZZ_pX_CA_element.pyx,sha256=bm06YwL-VctCzcwsejfg6cxJwLM2nbsUZYiBR8Kt2uA,93250
121
+ sage/rings/padics/padic_ZZ_pX_CR_element.cpython-314t-aarch64-linux-gnu.so,sha256=-NszKYz5XgF84rPptbTdXex92rLfE5dsUteP2cOpDIQ,3090705
122
+ sage/rings/padics/padic_ZZ_pX_CR_element.pxd,sha256=kj7li0xDm4LH42RnSip6prLDwRlFRvO-xtFfaNR-HL8,1652
123
+ sage/rings/padics/padic_ZZ_pX_CR_element.pyx,sha256=cQNF-p0omfwJQ7ODyNAwWgO9sDjA2VZJkA4L7BYPicM,128040
124
+ sage/rings/padics/padic_ZZ_pX_FM_element.cpython-314t-aarch64-linux-gnu.so,sha256=t9VwaiyFG_VXipCKrcYsBTfFHYgXhd2FEK-jK5FJ-hE,2440249
125
+ sage/rings/padics/padic_ZZ_pX_FM_element.pxd,sha256=ZwRN2dmQV8TEPJsUx-PmDq7cuhaJuQzMwcUqMVUrA0g,478
126
+ sage/rings/padics/padic_ZZ_pX_FM_element.pyx,sha256=5EAR3ZNcLqqkj-ValrbT9L1Yy1b_PXxu98iLjk39RzY,63686
127
+ sage/rings/padics/padic_ZZ_pX_element.cpython-314t-aarch64-linux-gnu.so,sha256=Ml1nzJIlbpWXXDFxpVHN_YE-mykeTL7XbzMEPFy6RPM,1907417
128
+ sage/rings/padics/padic_ZZ_pX_element.pxd,sha256=lHgxYJMCoZ4SysipUtc7LvwcNGA474N0aQKs17xLfSY,257
129
+ sage/rings/padics/padic_ZZ_pX_element.pyx,sha256=CXukK4kqBcfgEReml1_AOy-5WNfcPoqDyfllgeIZroc,35633
130
+ sage/rings/padics/padic_ext_element.cpython-314t-aarch64-linux-gnu.so,sha256=VKNToSUK2MeJblFE6OwADkkV7xw38VyNpqVRHoTwLRA,1381905
131
+ sage/rings/padics/padic_ext_element.pxd,sha256=mEsTNvVU3yFhC4C_gZ1UY77ZM8VdgyLY38MdvTboe0s,2477
132
+ sage/rings/padics/padic_ext_element.pyx,sha256=qXWc2jZt7WRPQKDPQAklc_ouNNoTpEPx_ZOs0Tj-foo,19205
133
+ sage/rings/padics/pow_computer_ext.cpython-314t-aarch64-linux-gnu.so,sha256=P6SOkpHglaQJmLGdnmd8JRInA_lOVB4Bwb-51vbG40s,2170609
134
+ sage/rings/padics/pow_computer_ext.pxd,sha256=YvG3t7IHstUK0iwe4gUKHeaQk-yBMEQXbxlpV9EaSUI,3909
135
+ sage/rings/padics/pow_computer_ext.pyx,sha256=ARN5hdbEOA-KcFI1r5aTEIGG_lqegUyid4MgfYOy-U8,98055
136
+ sage/rings/polynomial/all__sagemath_ntl.py,sha256=Xwyux1QrLqYdsoF00d1SE1oXhFs5WGrg-2EvcGo2vHg,42
137
+ sage/rings/polynomial/evaluation_ntl.cpython-314t-aarch64-linux-gnu.so,sha256=2urIg3kc3O8t6ROJMEIXHlmyXjfF0t9yXpzS43fZYik,397617
138
+ sage/rings/polynomial/evaluation_ntl.pxd,sha256=Kd_Llh1N_eQPOwFuw7cohH9JKX6rQeTbvhhfqOdmce0,294
139
+ sage/rings/polynomial/evaluation_ntl.pyx,sha256=2XUnShnfILYo21W0u9mQWwZgjRGGwjTIldvlRYGOOnw,2207
140
+ sage/rings/polynomial/polynomial_gf2x.cpython-314t-aarch64-linux-gnu.so,sha256=yG9E0ocY2WPHMLPnEliGLpC8PPntOBsLE-4VRxONy2g,2899729
141
+ sage/rings/polynomial/polynomial_gf2x.pxd,sha256=5k6WjceWXj-HrcxWHAlSKJZ24taayZwz1TM7sa6hQUg,230
142
+ sage/rings/polynomial/polynomial_gf2x.pyx,sha256=5s-KIrfB6R4MfUFkI24u-LBNKNfFlQA88cGAfDhyBZs,12290
143
+ sage/rings/polynomial/polynomial_integer_dense_ntl.cpython-314t-aarch64-linux-gnu.so,sha256=gR9c2w-zd7jvwU0qRShBOxYS0Uh4u-fyt5KI26-r_eA,2637569
144
+ sage/rings/polynomial/polynomial_integer_dense_ntl.pxd,sha256=yjuyM2x15NwPeTJvQGHlwkwkOzZ1N5Mu69iNQHVbsxU,271
145
+ sage/rings/polynomial/polynomial_integer_dense_ntl.pyx,sha256=uq30JheunVy5Oj6HLMa_uxdFGfOfPYNdlL_fdiITIn0,36417
146
+ sage/rings/polynomial/polynomial_modn_dense_ntl.cpython-314t-aarch64-linux-gnu.so,sha256=070rY7rj-9LEDillZdNNLFW20buE4Z3NEttXgAO7fH8,4406201
147
+ sage/rings/polynomial/polynomial_modn_dense_ntl.pxd,sha256=hla7zO0d5xKdk1QmFdOYKs7N8FzoHZc48Jh2SWsFw1c,1170
148
+ sage/rings/polynomial/polynomial_modn_dense_ntl.pyx,sha256=-gJXcsQ_cts8WrMuOIR6ZNMmzffvEacl04J6y4Fe1tQ,68031
149
+ sage/rings/polynomial/polynomial_template.pxi,sha256=b2GeTLSwje5NYcq1rsChy7XjKQHAUJcNiuJt1ENFZg8,29219
150
+ sage/rings/polynomial/polynomial_template_header.pxi,sha256=rj1tt1VARE7gqMcDzx0Z2VgILY6aocrOcnSH4-E7qkw,285
151
+ sage/rings/polynomial/polynomial_zz_pex.cpython-314t-aarch64-linux-gnu.so,sha256=m_k66qZlvWhTmpUi8KCgh6uAguzlRla16fQ8zuggIyw,3026145
152
+ sage/rings/polynomial/polynomial_zz_pex.pxd,sha256=Dmy5t7VuoyNznuqctOMIhWd15JDeA2tYRJG7zxG-mus,433
153
+ sage/rings/polynomial/polynomial_zz_pex.pyx,sha256=GsyskCpNinPQyMb3nmWWTmyRGFG53Gnf9xPmQQNF374,26292
154
+ sage/schemes/all__sagemath_ntl.py,sha256=Xwyux1QrLqYdsoF00d1SE1oXhFs5WGrg-2EvcGo2vHg,42
155
+ sage/schemes/hyperelliptic_curves/all__sagemath_ntl.py,sha256=Xwyux1QrLqYdsoF00d1SE1oXhFs5WGrg-2EvcGo2vHg,42
156
+ sage/schemes/hyperelliptic_curves/hypellfrob.cpython-314t-aarch64-linux-gnu.so,sha256=lvI1kqxvkBzSMVUqElOywEFeIvI0HP24wR3J9fTicAE,4278353
157
+ sage/schemes/hyperelliptic_curves/hypellfrob.pyx,sha256=_t9PMPJucAG_ikxTrFOb2zNjp8W6vuo2ga41U6mv3yA,9119
158
+ passagemath_ntl-10.6.36.dist-info/METADATA,sha256=6MjzLJb9Wfk9j8qu0cTAVo5L35dJKsXxu5mctyzudNM,6444
159
+ passagemath_ntl-10.6.36.dist-info/WHEEL,sha256=mcfNFdecsx29CWI7fJ2KXdms3kmEDzRdYFrOz4sgd_A,156
160
+ passagemath_ntl-10.6.36.dist-info/top_level.txt,sha256=Kmzulf9WsphADFQuqgvdy5mvTLDj_V2zkFHU2s3UXos,6
161
+ passagemath_ntl-10.6.36.dist-info/RECORD,,
@@ -0,0 +1,6 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: false
4
+ Tag: cp314-cp314t-manylinux_2_24_aarch64
5
+ Tag: cp314-cp314t-manylinux_2_28_aarch64
6
+
@@ -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)