passagemath-ntl 10.8.1a1__cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_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.
Files changed (162) hide show
  1. passagemath_ntl/__init__.py +3 -0
  2. passagemath_ntl-10.8.1a1.dist-info/METADATA +121 -0
  3. passagemath_ntl-10.8.1a1.dist-info/RECORD +162 -0
  4. passagemath_ntl-10.8.1a1.dist-info/WHEEL +6 -0
  5. passagemath_ntl-10.8.1a1.dist-info/top_level.txt +3 -0
  6. passagemath_ntl.libs/libgf2x-a4cdec90.so.3.0.0 +0 -0
  7. passagemath_ntl.libs/libgmp-6e109695.so.10.5.0 +0 -0
  8. passagemath_ntl.libs/libmpfi-bcd96d8d.so.0.0.0 +0 -0
  9. passagemath_ntl.libs/libmpfr-104d25bb.so.6.2.2 +0 -0
  10. passagemath_ntl.libs/libntl-bacfd860.so.45.0.0 +0 -0
  11. sage/all__sagemath_ntl.py +7 -0
  12. sage/libs/all__sagemath_ntl.py +3 -0
  13. sage/libs/mpfi/__init__.pxd +287 -0
  14. sage/libs/mpfi/types.pxd +10 -0
  15. sage/libs/ntl/GF2.pxd +18 -0
  16. sage/libs/ntl/GF2E.pxd +28 -0
  17. sage/libs/ntl/GF2EX.pxd +12 -0
  18. sage/libs/ntl/GF2X.pxd +81 -0
  19. sage/libs/ntl/ZZ.pxd +93 -0
  20. sage/libs/ntl/ZZX.pxd +85 -0
  21. sage/libs/ntl/ZZ_p.pxd +28 -0
  22. sage/libs/ntl/ZZ_pE.pxd +37 -0
  23. sage/libs/ntl/ZZ_pEX.pxd +106 -0
  24. sage/libs/ntl/ZZ_pX.pxd +122 -0
  25. sage/libs/ntl/__init__.py +4 -0
  26. sage/libs/ntl/all.py +72 -0
  27. sage/libs/ntl/conversion.pxd +106 -0
  28. sage/libs/ntl/convert.cpython-314t-x86_64-linux-gnu.so +0 -0
  29. sage/libs/ntl/convert.pxd +7 -0
  30. sage/libs/ntl/convert.pyx +38 -0
  31. sage/libs/ntl/decl.pxi +18 -0
  32. sage/libs/ntl/error.cpython-314t-x86_64-linux-gnu.so +0 -0
  33. sage/libs/ntl/error.pyx +63 -0
  34. sage/libs/ntl/lzz_p.pxd +20 -0
  35. sage/libs/ntl/lzz_pX.pxd +59 -0
  36. sage/libs/ntl/mat_GF2.pxd +30 -0
  37. sage/libs/ntl/mat_GF2E.pxd +30 -0
  38. sage/libs/ntl/mat_ZZ.pxd +59 -0
  39. sage/libs/ntl/misc.pxi +33 -0
  40. sage/libs/ntl/ntl_GF2.cpython-314t-x86_64-linux-gnu.so +0 -0
  41. sage/libs/ntl/ntl_GF2.pxd +5 -0
  42. sage/libs/ntl/ntl_GF2.pyx +281 -0
  43. sage/libs/ntl/ntl_GF2E.cpython-314t-x86_64-linux-gnu.so +0 -0
  44. sage/libs/ntl/ntl_GF2E.pxd +8 -0
  45. sage/libs/ntl/ntl_GF2E.pyx +488 -0
  46. sage/libs/ntl/ntl_GF2EContext.cpython-314t-x86_64-linux-gnu.so +0 -0
  47. sage/libs/ntl/ntl_GF2EContext.pxd +9 -0
  48. sage/libs/ntl/ntl_GF2EContext.pyx +134 -0
  49. sage/libs/ntl/ntl_GF2EX.cpython-314t-x86_64-linux-gnu.so +0 -0
  50. sage/libs/ntl/ntl_GF2EX.pxd +10 -0
  51. sage/libs/ntl/ntl_GF2EX.pyx +251 -0
  52. sage/libs/ntl/ntl_GF2X.cpython-314t-x86_64-linux-gnu.so +0 -0
  53. sage/libs/ntl/ntl_GF2X.pxd +5 -0
  54. sage/libs/ntl/ntl_GF2X.pyx +771 -0
  55. sage/libs/ntl/ntl_GF2X_linkage.pxi +404 -0
  56. sage/libs/ntl/ntl_ZZ.cpython-314t-x86_64-linux-gnu.so +0 -0
  57. sage/libs/ntl/ntl_ZZ.pxd +7 -0
  58. sage/libs/ntl/ntl_ZZ.pyx +541 -0
  59. sage/libs/ntl/ntl_ZZX.cpython-314t-x86_64-linux-gnu.so +0 -0
  60. sage/libs/ntl/ntl_ZZX.pxd +7 -0
  61. sage/libs/ntl/ntl_ZZX.pyx +1206 -0
  62. sage/libs/ntl/ntl_ZZ_p.cpython-314t-x86_64-linux-gnu.so +0 -0
  63. sage/libs/ntl/ntl_ZZ_p.pxd +10 -0
  64. sage/libs/ntl/ntl_ZZ_p.pyx +508 -0
  65. sage/libs/ntl/ntl_ZZ_pContext.cpython-314t-x86_64-linux-gnu.so +0 -0
  66. sage/libs/ntl/ntl_ZZ_pContext.pxd +22 -0
  67. sage/libs/ntl/ntl_ZZ_pContext.pyx +201 -0
  68. sage/libs/ntl/ntl_ZZ_pE.cpython-314t-x86_64-linux-gnu.so +0 -0
  69. sage/libs/ntl/ntl_ZZ_pE.pxd +11 -0
  70. sage/libs/ntl/ntl_ZZ_pE.pyx +349 -0
  71. sage/libs/ntl/ntl_ZZ_pEContext.cpython-314t-x86_64-linux-gnu.so +0 -0
  72. sage/libs/ntl/ntl_ZZ_pEContext.pxd +23 -0
  73. sage/libs/ntl/ntl_ZZ_pEContext.pyx +226 -0
  74. sage/libs/ntl/ntl_ZZ_pEX.cpython-314t-x86_64-linux-gnu.so +0 -0
  75. sage/libs/ntl/ntl_ZZ_pEX.pxd +10 -0
  76. sage/libs/ntl/ntl_ZZ_pEX.pyx +1255 -0
  77. sage/libs/ntl/ntl_ZZ_pEX_linkage.pxi +420 -0
  78. sage/libs/ntl/ntl_ZZ_pX.cpython-314t-x86_64-linux-gnu.so +0 -0
  79. sage/libs/ntl/ntl_ZZ_pX.pxd +17 -0
  80. sage/libs/ntl/ntl_ZZ_pX.pyx +1532 -0
  81. sage/libs/ntl/ntl_lzz_p.cpython-314t-x86_64-linux-gnu.so +0 -0
  82. sage/libs/ntl/ntl_lzz_p.pxd +8 -0
  83. sage/libs/ntl/ntl_lzz_p.pyx +440 -0
  84. sage/libs/ntl/ntl_lzz_pContext.cpython-314t-x86_64-linux-gnu.so +0 -0
  85. sage/libs/ntl/ntl_lzz_pContext.pxd +7 -0
  86. sage/libs/ntl/ntl_lzz_pContext.pyx +137 -0
  87. sage/libs/ntl/ntl_lzz_pX.cpython-314t-x86_64-linux-gnu.so +0 -0
  88. sage/libs/ntl/ntl_lzz_pX.pxd +10 -0
  89. sage/libs/ntl/ntl_lzz_pX.pyx +902 -0
  90. sage/libs/ntl/ntl_mat_GF2.cpython-314t-x86_64-linux-gnu.so +0 -0
  91. sage/libs/ntl/ntl_mat_GF2.pxd +8 -0
  92. sage/libs/ntl/ntl_mat_GF2.pyx +612 -0
  93. sage/libs/ntl/ntl_mat_GF2E.cpython-314t-x86_64-linux-gnu.so +0 -0
  94. sage/libs/ntl/ntl_mat_GF2E.pxd +10 -0
  95. sage/libs/ntl/ntl_mat_GF2E.pyx +752 -0
  96. sage/libs/ntl/ntl_mat_ZZ.cpython-314t-x86_64-linux-gnu.so +0 -0
  97. sage/libs/ntl/ntl_mat_ZZ.pxd +6 -0
  98. sage/libs/ntl/ntl_mat_ZZ.pyx +1522 -0
  99. sage/libs/ntl/ntl_tools.pxd +3 -0
  100. sage/libs/ntl/ntlwrap.h +53 -0
  101. sage/libs/ntl/ntlwrap_impl.h +743 -0
  102. sage/libs/ntl/types.pxd +157 -0
  103. sage/libs/ntl/vec_GF2.pxd +26 -0
  104. sage/libs/ntl/vec_GF2E.pxd +2 -0
  105. sage/matrix/all__sagemath_ntl.py +1 -0
  106. sage/matrix/matrix_modn_dense_double.pxd +10 -0
  107. sage/matrix/matrix_modn_dense_float.pxd +9 -0
  108. sage/matrix/matrix_modn_dense_template.pxi +3475 -0
  109. sage/matrix/matrix_modn_dense_template_header.pxi +15 -0
  110. sage/matrix/matrix_modn_sparse.pxd +8 -0
  111. sage/misc/all__sagemath_ntl.py +1 -0
  112. sage/rings/all__sagemath_ntl.py +7 -0
  113. sage/rings/bernmm.cpython-314t-x86_64-linux-gnu.so +0 -0
  114. sage/rings/bernmm.pyx +161 -0
  115. sage/rings/bernoulli_mod_p.cpython-314t-x86_64-linux-gnu.so +0 -0
  116. sage/rings/bernoulli_mod_p.pyx +312 -0
  117. sage/rings/finite_rings/all__sagemath_ntl.py +1 -0
  118. sage/rings/finite_rings/finite_field_ntl_gf2e.py +309 -0
  119. sage/rings/finite_rings/residue_field_ntl_gf2e.cpython-314t-x86_64-linux-gnu.so +0 -0
  120. sage/rings/finite_rings/residue_field_ntl_gf2e.pyx +140 -0
  121. sage/rings/padics/all__sagemath_ntl.py +5 -0
  122. sage/rings/padics/padic_ZZ_pX_CA_element.cpython-314t-x86_64-linux-gnu.so +0 -0
  123. sage/rings/padics/padic_ZZ_pX_CA_element.pxd +25 -0
  124. sage/rings/padics/padic_ZZ_pX_CA_element.pyx +2366 -0
  125. sage/rings/padics/padic_ZZ_pX_CR_element.cpython-314t-x86_64-linux-gnu.so +0 -0
  126. sage/rings/padics/padic_ZZ_pX_CR_element.pxd +33 -0
  127. sage/rings/padics/padic_ZZ_pX_CR_element.pyx +3282 -0
  128. sage/rings/padics/padic_ZZ_pX_FM_element.cpython-314t-x86_64-linux-gnu.so +0 -0
  129. sage/rings/padics/padic_ZZ_pX_FM_element.pxd +12 -0
  130. sage/rings/padics/padic_ZZ_pX_FM_element.pyx +1737 -0
  131. sage/rings/padics/padic_ZZ_pX_element.cpython-314t-x86_64-linux-gnu.so +0 -0
  132. sage/rings/padics/padic_ZZ_pX_element.pxd +6 -0
  133. sage/rings/padics/padic_ZZ_pX_element.pyx +919 -0
  134. sage/rings/padics/padic_ext_element.cpython-314t-x86_64-linux-gnu.so +0 -0
  135. sage/rings/padics/padic_ext_element.pxd +38 -0
  136. sage/rings/padics/padic_ext_element.pyx +513 -0
  137. sage/rings/padics/pow_computer_ext.cpython-314t-x86_64-linux-gnu.so +0 -0
  138. sage/rings/padics/pow_computer_ext.pxd +107 -0
  139. sage/rings/padics/pow_computer_ext.pyx +2402 -0
  140. sage/rings/polynomial/all__sagemath_ntl.py +1 -0
  141. sage/rings/polynomial/evaluation_ntl.cpython-314t-x86_64-linux-gnu.so +0 -0
  142. sage/rings/polynomial/evaluation_ntl.pxd +7 -0
  143. sage/rings/polynomial/evaluation_ntl.pyx +70 -0
  144. sage/rings/polynomial/polynomial_gf2x.cpython-314t-x86_64-linux-gnu.so +0 -0
  145. sage/rings/polynomial/polynomial_gf2x.pxd +10 -0
  146. sage/rings/polynomial/polynomial_gf2x.pyx +364 -0
  147. sage/rings/polynomial/polynomial_integer_dense_ntl.cpython-314t-x86_64-linux-gnu.so +0 -0
  148. sage/rings/polynomial/polynomial_integer_dense_ntl.pxd +8 -0
  149. sage/rings/polynomial/polynomial_integer_dense_ntl.pyx +1128 -0
  150. sage/rings/polynomial/polynomial_modn_dense_ntl.cpython-314t-x86_64-linux-gnu.so +0 -0
  151. sage/rings/polynomial/polynomial_modn_dense_ntl.pxd +36 -0
  152. sage/rings/polynomial/polynomial_modn_dense_ntl.pyx +2050 -0
  153. sage/rings/polynomial/polynomial_template.pxi +839 -0
  154. sage/rings/polynomial/polynomial_template_header.pxi +11 -0
  155. sage/rings/polynomial/polynomial_zz_pex.cpython-314t-x86_64-linux-gnu.so +0 -0
  156. sage/rings/polynomial/polynomial_zz_pex.pxd +12 -0
  157. sage/rings/polynomial/polynomial_zz_pex.pyx +778 -0
  158. sage/rings/real_mpfi.pxd +50 -0
  159. sage/schemes/all__sagemath_ntl.py +1 -0
  160. sage/schemes/hyperelliptic_curves/all__sagemath_ntl.py +1 -0
  161. sage/schemes/hyperelliptic_curves/hypellfrob.cpython-314t-x86_64-linux-gnu.so +0 -0
  162. sage/schemes/hyperelliptic_curves/hypellfrob.pyx +253 -0
@@ -0,0 +1,3 @@
1
+ # sage_setup: distribution = sagemath-ntl
2
+
3
+ from sage.all__sagemath_ntl import *
@@ -0,0 +1,121 @@
1
+ Metadata-Version: 2.4
2
+ Name: passagemath-ntl
3
+ Version: 10.8.1a1
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.11
24
+ Classifier: Programming Language :: Python :: 3.12
25
+ Classifier: Programming Language :: Python :: 3.13
26
+ Classifier: Programming Language :: Python :: 3.14
27
+ Classifier: Programming Language :: Python :: Implementation :: CPython
28
+ Classifier: Topic :: Scientific/Engineering :: Mathematics
29
+ Requires-Python: <3.15,>=3.11
30
+ Description-Content-Type: text/x-rst
31
+ Requires-Dist: cysignals!=1.12.4; sys_platform == "win32"
32
+ Requires-Dist: cysignals!=1.12.0,>=1.11.2
33
+ Requires-Dist: memory_allocator
34
+ Requires-Dist: passagemath-environment==10.8.1.alpha1
35
+ Requires-Dist: passagemath-categories==10.8.1.alpha1
36
+ Provides-Extra: test
37
+ Requires-Dist: passagemath-repl; extra == "test"
38
+ Requires-Dist: passagemath-modules; extra == "test"
39
+
40
+ ==============================================================================
41
+ passagemath: Computational Number Theory with NTL
42
+ ==============================================================================
43
+
44
+ `passagemath <https://github.com/passagemath/passagemath>`__ is open
45
+ source mathematical software in Python, released under the GNU General
46
+ Public Licence GPLv2+.
47
+
48
+ It is a fork of `SageMath <https://www.sagemath.org/>`__, which has been
49
+ developed 2005-2025 under the motto “Creating a Viable Open Source
50
+ Alternative to Magma, Maple, Mathematica, and MATLAB”.
51
+
52
+ The passagemath fork uses the motto "Creating a Free Passage Between the
53
+ Scientific Python Ecosystem and Mathematical Software Communities."
54
+ It was created in October 2024 with the following goals:
55
+
56
+ - providing modularized installation with pip,
57
+ - establishing first-class membership in the scientific Python
58
+ ecosystem,
59
+ - giving `clear attribution of upstream
60
+ projects <https://groups.google.com/g/sage-devel/c/6HO1HEtL1Fs/m/G002rPGpAAAJ>`__,
61
+ - providing independently usable Python interfaces to upstream
62
+ libraries,
63
+ - offering `platform portability and integration testing
64
+ services <https://github.com/passagemath/passagemath/issues/704>`__
65
+ to upstream projects,
66
+ - inviting collaborations with upstream projects,
67
+ - `building a professional, respectful, inclusive
68
+ community <https://groups.google.com/g/sage-devel/c/xBzaINHWwUQ>`__,
69
+ - `empowering Sage users to participate in the scientific Python ecosystem
70
+ <https://github.com/passagemath/passagemath/issues/248>`__ by publishing packages,
71
+ - developing a port to `Pyodide <https://pyodide.org/en/stable/>`__ for
72
+ serverless deployment with Javascript,
73
+ - developing a native Windows port.
74
+
75
+ `Full documentation <https://passagemath.org/docs/latest/html/en/index.html>`__ is
76
+ available online.
77
+
78
+ passagemath attempts to support and provides binary wheels suitable for
79
+ all major Linux distributions and recent versions of macOS.
80
+
81
+ Binary wheels for native Windows (x86_64) are are available for a subset of
82
+ the passagemath distributions. Use of the full functionality of passagemath
83
+ on Windows currently requires the use of Windows Subsystem for Linux (WSL)
84
+ or virtualization.
85
+
86
+ The supported Python versions in the passagemath 10.6.x series are 3.10.x-3.14.x.
87
+
88
+
89
+ About this pip-installable distribution package
90
+ -----------------------------------------------
91
+
92
+ This pip-installable package ``passagemath-ntl`` is a small
93
+ distribution that provides modules that depend on
94
+ `NTL <https://libntl.org/>`_, the library for doing number theory.
95
+
96
+
97
+ What is included
98
+ ----------------
99
+
100
+ * Computation of Bernoulli numbers modulo p:
101
+
102
+ * `Cython wrapper for bernmm library <https://passagemath.org/docs/latest/html/en/reference/rings_standard/sage/rings/bernmm.html>`_
103
+ * `Bernoulli numbers modulo p <https://passagemath.org/docs/latest/html/en/reference/rings_standard/sage/rings/bernoulli_mod_p.html>`_
104
+
105
+ * Finite fields of characteristic 2
106
+
107
+ * `Finite fields of characteristic 2 <https://passagemath.org/docs/latest/html/en/reference/finite_rings/sage/rings/finite_rings/finite_field_ntl_gf2e.html>`_
108
+ * `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>`_
109
+
110
+ * p-adic extension elements:
111
+
112
+ * `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>`_
113
+ * `p-adic ZZ_pX Element <https://passagemath.org/docs/latest/html/en/reference/padics/sage/rings/padics/padic_ZZ_pX_element.html>`_
114
+ * `p-adic ZZ_pX CR Element <https://passagemath.org/docs/latest/html/en/reference/padics/sage/rings/padics/padic_ZZ_pX_CR_element.html>`_
115
+ * `p-adic ZZ_pX CA Element <https://passagemath.org/docs/latest/html/en/reference/padics/sage/rings/padics/padic_ZZ_pX_CA_element.html>`_
116
+ * `p-adic ZZ_pX FM Element <https://passagemath.org/docs/latest/html/en/reference/padics/sage/rings/padics/padic_ZZ_pX_FM_element.html>`_
117
+ * `PowComputer_ext <https://passagemath.org/docs/latest/html/en/reference/padics/sage/rings/padics/pow_computer_ext.html>`_
118
+
119
+ * `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>`_
120
+
121
+ * see `MANIFEST <https://github.com/passagemath/passagemath/blob/main/pkgs/sagemath-ntl/MANIFEST.in>`_
@@ -0,0 +1,162 @@
1
+ passagemath_ntl/__init__.py,sha256=ll2Bn9wg-UAGeO4sXZcrHKsetnH65QwZhM5xPKKSZ4E,80
2
+ passagemath_ntl.libs/libgf2x-a4cdec90.so.3.0.0,sha256=PacKgkPjCZypsVBHFA1w3l3YzbpgPov-f9IKBsPEQXk,64209
3
+ passagemath_ntl.libs/libgmp-6e109695.so.10.5.0,sha256=kNPQVp5MPUB3mHDGNY3Gdh04Rxl0-IwZ5f1T3ufqiIk,761057
4
+ passagemath_ntl.libs/libmpfi-bcd96d8d.so.0.0.0,sha256=etBUMoCbqDAvoY6a2nxRjMmPuJZGngWGybztI_zLwjE,526777
5
+ passagemath_ntl.libs/libmpfr-104d25bb.so.6.2.2,sha256=FRKK_jE2DwicgHemIzGIOKbkluEcR5rgQ8WwGo_tODo,833897
6
+ passagemath_ntl.libs/libntl-bacfd860.so.45.0.0,sha256=tjRH7VKI1NN4mGZTfSH3Bmui8vNj9TqUjeYoP9_hveg,3079809
7
+ sage/all__sagemath_ntl.py,sha256=7LJBulOjrbpZ4bRI38kEYnyP7RTnIQ7nLuGT504of_k,189
8
+ sage/libs/all__sagemath_ntl.py,sha256=4bSDDgoHtBmLGLPls4uV8qUN8io7Lrw91M-CmErR0As,75
9
+ sage/libs/mpfi/__init__.pxd,sha256=tFPwUUwfLfPuStcKuoWZQ9_jVij0pQGVg8YQw0ymOT4,10810
10
+ sage/libs/mpfi/types.pxd,sha256=FdLs-uOjDxf8QlpiH9ZwsUz86Uau0EcCmWPmdOz74Gw,322
11
+ sage/libs/ntl/GF2.pxd,sha256=_GWR_LjjRpwYC4uBT1Dxe_CCjYb9XJS8xf59yiRHqLA,623
12
+ sage/libs/ntl/GF2E.pxd,sha256=UYn4FKhIqgWoQy0_FAd5zlxUMhqQI6lZoLbQimH5070,1005
13
+ sage/libs/ntl/GF2EX.pxd,sha256=DQj7I2URYMXWO7Cuxlrp8AvH1I7iDFOZvCGIHV6rJ8A,494
14
+ sage/libs/ntl/GF2X.pxd,sha256=TBqzoupmbUyy5SNvjASTsZ4_0-vEm44U03tIXUN2fmI,3712
15
+ sage/libs/ntl/ZZ.pxd,sha256=irjDJbQAi07Nsf7vlYJW9IRdsQmDbGQibD2kjjU47vg,3749
16
+ sage/libs/ntl/ZZX.pxd,sha256=1VT4ud4WbN0h8pihX2s34xl7fkyU44pisrPE0I8z2lE,3483
17
+ sage/libs/ntl/ZZ_p.pxd,sha256=ALtg0LJogD9oU9cSiAdiI0TdtL8B54xlMWy9rbnvsQs,1009
18
+ sage/libs/ntl/ZZ_pE.pxd,sha256=a-udUybj_bbZWqvf2hrQeFvQZu_T97t-FnzWD6M6QCs,1749
19
+ sage/libs/ntl/ZZ_pEX.pxd,sha256=vTVZgPQBLRnuwI5RR-bYuxHu5m_gZzoVDN8HUsURXCc,5540
20
+ sage/libs/ntl/ZZ_pX.pxd,sha256=LUYDS74WrRAvr2JEcVzL_PF1QiCtPYuR6nSdrLwVBaA,6510
21
+ sage/libs/ntl/__init__.py,sha256=j-YpcXAXkylLGSQbxuFWIiBBt4h5--gft0rB-gt2opc,127
22
+ sage/libs/ntl/all.py,sha256=rNXkK2wpOQ4e0xMzdHVDx_SvzToh9bmCIlkqyhb698s,2286
23
+ sage/libs/ntl/conversion.pxd,sha256=--FH5p7qTF7pvX5ID8QOiP0lqbBsVmwgraHjJ6fn5ME,3591
24
+ sage/libs/ntl/convert.cpython-314t-x86_64-linux-gnu.so,sha256=stPzt2jKjau0eKz7S84yBuOH-gzQP_8Uj9RzIQ5d_sA,172705
25
+ sage/libs/ntl/convert.pxd,sha256=__hz49kJMXA4Nx1zNSVvklsZV3TY-VMNJuORU7V6BGA,289
26
+ sage/libs/ntl/convert.pyx,sha256=Y-Bg3h8wYVZJVINBegvsh7jPjYvWlAAjQLR4f_rlf-w,1355
27
+ sage/libs/ntl/decl.pxi,sha256=9Bg-6UE0Zr0wQpfnGgfVcUP_KkJ7HAmnhxoaz-Tl2SM,660
28
+ sage/libs/ntl/error.cpython-314t-x86_64-linux-gnu.so,sha256=1lE4pXN0KZmx_TjacTGItfN8JtzMDB0eo_R_oqnPiIA,492905
29
+ sage/libs/ntl/error.pyx,sha256=0RKxnactqL4kDHyBMU6jaRdYO1HVS2rcbFlgDcBkAR4,1880
30
+ sage/libs/ntl/lzz_p.pxd,sha256=wfV-gQ853XbzsVYfhnKI1iorYP8ts_SoJbnxy-f0ZZU,803
31
+ sage/libs/ntl/lzz_pX.pxd,sha256=rjZrFngWqwsnbPWqmGV60B0nMFTXhp29c08mZRUvQU4,3343
32
+ sage/libs/ntl/mat_GF2.pxd,sha256=X6BVVawJLQiOEB-N-GwxUuLP_yi1diyYs_5tDxL8OUI,1291
33
+ sage/libs/ntl/mat_GF2E.pxd,sha256=e3l-QC_X8dZqcThA-b9oxiSG3WAw4B48e39Yso1pOSQ,1352
34
+ sage/libs/ntl/mat_ZZ.pxd,sha256=uYefAGmI34B9uHUx0Ar_ubwf56sdXOf22LXYme3aEf4,5172
35
+ sage/libs/ntl/misc.pxi,sha256=URBgZg1VKjZIxWkZPzhm4DX66XjbaU5-eGuZbUEwJZ4,1017
36
+ sage/libs/ntl/ntl_GF2.cpython-314t-x86_64-linux-gnu.so,sha256=TS09hlf742S9rob581PjfUaNp1iAGqAy4O-tznCaAeM,1011329
37
+ sage/libs/ntl/ntl_GF2.pxd,sha256=IR3S8tjHGG0XGxGSUuceq_w92WycIHjJUE4JsY0qe6s,121
38
+ sage/libs/ntl/ntl_GF2.pyx,sha256=Qxl5AAm2W6u1_ueAH3GA-6qFvLTgL4WNLjOnWfuJ0lo,7162
39
+ sage/libs/ntl/ntl_GF2E.cpython-314t-x86_64-linux-gnu.so,sha256=4y5nPBywflPBz5OSz14DuEQGHKLcZaMH9EFoe1ehciM,1122289
40
+ sage/libs/ntl/ntl_GF2E.pxd,sha256=zLIBEc7VM08Ybl9sNBYNZbh_KCpOEDBCCpJaB9zQ8Rw,251
41
+ sage/libs/ntl/ntl_GF2E.pyx,sha256=Cc0NpDPaISS6BiavcM6Ts7ZMSRvLj3QxaKL39AXcWM4,14855
42
+ sage/libs/ntl/ntl_GF2EContext.cpython-314t-x86_64-linux-gnu.so,sha256=N1RuqJftZMCwLCHc9QfCQMmhzJV_IAEoQI0OS-vsxas,719497
43
+ sage/libs/ntl/ntl_GF2EContext.pxd,sha256=svKsYU12jLjEbfpJV_xvNrq_OvWrB5f_9NGRtLMTGEM,283
44
+ sage/libs/ntl/ntl_GF2EContext.pyx,sha256=jrrvW75Fz7qUpzl_Uya5JwEzq5kV8niGdfK1ziapz2A,3740
45
+ sage/libs/ntl/ntl_GF2EX.cpython-314t-x86_64-linux-gnu.so,sha256=foR-KcVFPDPrYmLm7c6YDS9Dh3nL05uyb4DWZ6WDjHQ,913233
46
+ sage/libs/ntl/ntl_GF2EX.pxd,sha256=9oi1SHQo2lUY3xXJXtVQnCOXaktFY1XUVx0gNPLTB-I,337
47
+ sage/libs/ntl/ntl_GF2EX.pyx,sha256=7oiuWMV9UfU1Du2kNe9ubY5IwtsaRrILMjqusEF9AoY,7954
48
+ sage/libs/ntl/ntl_GF2X.cpython-314t-x86_64-linux-gnu.so,sha256=L7SUzKuaONu7izKz6-r5OWc0YwmkWRrLV3g_Hrvs4_M,1297393
49
+ sage/libs/ntl/ntl_GF2X.pxd,sha256=pwc5TYbB4b9L9XSZjQwP89XSPVbhADbUYhH2aUSw9ys,124
50
+ sage/libs/ntl/ntl_GF2X.pyx,sha256=KTtkNna5dLG5CHAuPedG0_6O7pAjUqZ5U-uoPXtI3Nk,20622
51
+ sage/libs/ntl/ntl_GF2X_linkage.pxi,sha256=Rw8Hsy6c0RBLjZ-ceApgxvg_npveektTcc_6YJ0IH6k,9257
52
+ sage/libs/ntl/ntl_ZZ.cpython-314t-x86_64-linux-gnu.so,sha256=U3tnWGFrjNFae8j1nob7WUe2WVuGdnMl5tY8ujtRiUs,1196561
53
+ sage/libs/ntl/ntl_ZZ.pxd,sha256=ohJDLDrmZ7jMduDRL5etPIZ87IxxRMjl745Gmge-HcU,224
54
+ sage/libs/ntl/ntl_ZZ.pyx,sha256=H1FaXuoHeXWObkmaGVEgF-WJV2gn8-uNph55bv8rxPA,13944
55
+ sage/libs/ntl/ntl_ZZX.cpython-314t-x86_64-linux-gnu.so,sha256=BDYr7sRK1n1y8IdxabcTwUaLzRM4GLLlsMhO0ycmij0,1710057
56
+ sage/libs/ntl/ntl_ZZX.pxd,sha256=XNGOxAPE9B06O45QucckJaB-fCOtIdxfoN3eHC7Rw_g,253
57
+ sage/libs/ntl/ntl_ZZX.pyx,sha256=DWW2OrRej4B-DBgiyOuqshLnYn_1wwqVpTe2qUHmNdY,34730
58
+ sage/libs/ntl/ntl_ZZ_p.cpython-314t-x86_64-linux-gnu.so,sha256=yo-gJ0mDRPcYZgCoUdFrOQMq_pGQRcXQLYlD8k6qiMw,1290553
59
+ sage/libs/ntl/ntl_ZZ_p.pxd,sha256=erL2upd1kw4EhJB_QcdjoZWECdsfm-pfiHhOXLVZ1m0,361
60
+ sage/libs/ntl/ntl_ZZ_p.pyx,sha256=12utKWDcm05-9hmi2OIlMdyLjQngSTxJS2YauMN91pY,14581
61
+ sage/libs/ntl/ntl_ZZ_pContext.cpython-314t-x86_64-linux-gnu.so,sha256=Xq0gt0U828v6RwKAqNpDBf3JnY7eBXA1o1OTZVxsT5c,990857
62
+ sage/libs/ntl/ntl_ZZ_pContext.pxd,sha256=2warqallT_WALnd5j3q1lsPvKto4lIp8GDNBcA6C5p4,615
63
+ sage/libs/ntl/ntl_ZZ_pContext.pyx,sha256=ZCmjdoImf2tE1yNQXGfhoTynsOFQnM0ff68qkGN-FaU,5719
64
+ sage/libs/ntl/ntl_ZZ_pE.cpython-314t-x86_64-linux-gnu.so,sha256=7xm_-JrnKhYffWOPSb2zKP9JvIkk16WTHuz1x2990mk,1318977
65
+ sage/libs/ntl/ntl_ZZ_pE.pxd,sha256=IA7GemK36SNKPT1kaCJw5Vl8sHTaZMThLF-ZVa6-GZ8,424
66
+ sage/libs/ntl/ntl_ZZ_pE.pyx,sha256=ZJXEDdwYYxdIvooXJOQ5qJr3ESdbJwgLIo1DwT0Ljks,11630
67
+ sage/libs/ntl/ntl_ZZ_pEContext.cpython-314t-x86_64-linux-gnu.so,sha256=VxlSElB5CrxE4UmI8KjfcF0niYTmqqVz4HfPcMXIxA8,1158921
68
+ sage/libs/ntl/ntl_ZZ_pEContext.pxd,sha256=p1NTT_EoJYzjSwxsYRS4SEmo70gQksE4zUqrzDB4Pf4,696
69
+ sage/libs/ntl/ntl_ZZ_pEContext.pyx,sha256=QRfwU53L_ClBmrOlSxObZ5EstBdSXTNsEg6KL4NztO4,7213
70
+ sage/libs/ntl/ntl_ZZ_pEX.cpython-314t-x86_64-linux-gnu.so,sha256=sV8veprqKnuSWvOfyP8ISYu8-u8TtuTlyQEo2Q71sJc,1537529
71
+ sage/libs/ntl/ntl_ZZ_pEX.pxd,sha256=4Q36m179SjB4lysxFo2_RJ2OFt1GfbuD8qd6z_ksODI,382
72
+ sage/libs/ntl/ntl_ZZ_pEX.pyx,sha256=rH1QkVjw_FrXcc9bLUx4Iz4txaYMwibPCxSLATNY2Do,39881
73
+ sage/libs/ntl/ntl_ZZ_pEX_linkage.pxi,sha256=Yu6Y6vEHwPMhgG-aGvHmrR36ExuO3ho6a8UTGBW8kNw,12462
74
+ sage/libs/ntl/ntl_ZZ_pX.cpython-314t-x86_64-linux-gnu.so,sha256=2Nuo0V_hOXvwPCLuYJYKgpIOf7WuLEIG0hm3glm40Wo,2148737
75
+ sage/libs/ntl/ntl_ZZ_pX.pxd,sha256=f8YDnsRc-gwc6ci5Bkzg06OUDuNqawF6nb-hQ6Py4yo,634
76
+ sage/libs/ntl/ntl_ZZ_pX.pyx,sha256=Pp7y0mGUJ8XzgrxepybuvUg-BBOIorDsHt9tzo5Kl0k,45735
77
+ sage/libs/ntl/ntl_lzz_p.cpython-314t-x86_64-linux-gnu.so,sha256=t3yNHfWR1jNKCNm1Ep_w81AmaBV0wntx08v2XGMHlJM,1088033
78
+ sage/libs/ntl/ntl_lzz_p.pxd,sha256=jvw29tbLHXgqzJxAHzUiHFl39VwMGNCwUA6wtgO8azo,256
79
+ sage/libs/ntl/ntl_lzz_p.pyx,sha256=KMj3wXCoNjQTVbAZA0X-UGD2y82UEvnrorhcE3qvuxA,12532
80
+ sage/libs/ntl/ntl_lzz_pContext.cpython-314t-x86_64-linux-gnu.so,sha256=YMPG_mpxWcSJzGdgzHtKbXvcDxp9r4LlST7g1FzXUuo,878449
81
+ sage/libs/ntl/ntl_lzz_pContext.pxd,sha256=IKI_F9hR1UDR_zVB6OJQxdzKvc0bkDfPxXrPnEf4OgE,206
82
+ sage/libs/ntl/ntl_lzz_pContext.pyx,sha256=D4d0MZNTtJoapgEPgFhuThYe2dih7XOp2C94TvbIq1U,3864
83
+ sage/libs/ntl/ntl_lzz_pX.cpython-314t-x86_64-linux-gnu.so,sha256=sZDHmJ13oxZFK_FVyn0RHmArsrBt86ulTRgAq6OU7gM,1201329
84
+ sage/libs/ntl/ntl_lzz_pX.pxd,sha256=fOleR2UZOMLpyPnlnihcSWA48H2JF4hqtFmNccVxe9o,287
85
+ sage/libs/ntl/ntl_lzz_pX.pyx,sha256=bGklyElTFmYJEq6vTR8M_1iXm2g1ZSt5z-hTD-X4QtA,26269
86
+ sage/libs/ntl/ntl_mat_GF2.cpython-314t-x86_64-linux-gnu.so,sha256=X9V6oN1mlVb-opbpxuKtSfb6BcQdhD1a0rpkr-La9oE,1299105
87
+ sage/libs/ntl/ntl_mat_GF2.pxd,sha256=VijyibgLkZO2dtruyVnc3tV589-z6yU7Idp8wkyDDfA,244
88
+ sage/libs/ntl/ntl_mat_GF2.pyx,sha256=TSQsBp4SUCEwiiON1a1RQTdeF8F8z1cEticWMg-vPqU,17387
89
+ sage/libs/ntl/ntl_mat_GF2E.cpython-314t-x86_64-linux-gnu.so,sha256=gYzy3cr-9DOChc-BvjDb8yTmk5qrKZGYEdy9y9wY3PQ,1378873
90
+ sage/libs/ntl/ntl_mat_GF2E.pxd,sha256=obVNeKOcx8ZzvDNjmo5qUceFBsvTnO4BHIJlcvR5j6c,349
91
+ sage/libs/ntl/ntl_mat_GF2E.pyx,sha256=ZgtfxhLaWEqZuPYYq-k9r8kDRe6gFiIG4dfyorXC2js,24168
92
+ sage/libs/ntl/ntl_mat_ZZ.cpython-314t-x86_64-linux-gnu.so,sha256=kUoamXabe2PBaqSGq0rjUAmCphoLKyNd5AIRzvmFlhw,1803145
93
+ sage/libs/ntl/ntl_mat_ZZ.pxd,sha256=Y7EwFaF-ovG4Ndk4_5T_zK-SckZ14b8CX2IA9UN-9e0,161
94
+ sage/libs/ntl/ntl_mat_ZZ.pyx,sha256=PrQtyv6OAZjVGow7ufrkgEVBIrPb0EhGx0cgRnro7j0,53526
95
+ sage/libs/ntl/ntl_tools.pxd,sha256=3bpFmnnO8uXTLbc-ECMjzE-vjzbBYxZlMdU5yAUwEZc,142
96
+ sage/libs/ntl/ntlwrap.h,sha256=Pjd7xuzY9OmMfx7O0oUQRXkXvZ6Qy4jIEOtlbddnsQU,1228
97
+ sage/libs/ntl/ntlwrap_impl.h,sha256=xbkwT7dHS0e5woE1VgC7ZRdzAhRsxFGJcokwywMY2fg,17973
98
+ sage/libs/ntl/types.pxd,sha256=skz4zW76stK19tjyZLKvDdmWb0igyqCAQvEXPjK4zHQ,4041
99
+ sage/libs/ntl/vec_GF2.pxd,sha256=7bakyBtL-0W-jRPsGB84n6upoOHS1avWZfVi8TGfRIM,1093
100
+ sage/libs/ntl/vec_GF2E.pxd,sha256=252Pb3-9l6eYbAnRMGwIP6SNtwu4XnbcjRvC085Lrm4,86
101
+ sage/matrix/all__sagemath_ntl.py,sha256=Xwyux1QrLqYdsoF00d1SE1oXhFs5WGrg-2EvcGo2vHg,42
102
+ sage/matrix/matrix_modn_dense_double.pxd,sha256=qBNg45CyeCEKeqmHU6tVjWtFfxuO-dTxVysD-miIjFo,321
103
+ sage/matrix/matrix_modn_dense_float.pxd,sha256=NZ3z0GTv0_q1GZQ528bdfYjX_E70DJHlgeKLf7RMbhE,283
104
+ sage/matrix/matrix_modn_dense_template.pxi,sha256=7Ny9E7NjC-ETVvSOW1WvioKeO0aAJhfuVxV47zJJgPQ,114524
105
+ sage/matrix/matrix_modn_dense_template_header.pxi,sha256=fC-nHtUaAqKGu6FhnLE9CGljPyM7Rh6u3YOvSWmcpSg,516
106
+ sage/matrix/matrix_modn_sparse.pxd,sha256=FfVdVKP06I8r-V513j0kus5FkyGGbBqKskU2GwpH7NM,299
107
+ sage/misc/all__sagemath_ntl.py,sha256=Xwyux1QrLqYdsoF00d1SE1oXhFs5WGrg-2EvcGo2vHg,42
108
+ sage/rings/all__sagemath_ntl.py,sha256=l6oLjcHmqz6fbHBAm-cqE3toKyfSJ0LFCXQZhUZe8_U,224
109
+ sage/rings/bernmm.cpython-314t-x86_64-linux-gnu.so,sha256=vRzJG_v3ogrBbroWfXST1dQl9OYrB3gqNoYcwtx7-EU,1006753
110
+ sage/rings/bernmm.pyx,sha256=GU840d0toDlqzcXHPDdH7_MYBWoy7EfDUr8hB6Re_xU,4826
111
+ sage/rings/bernoulli_mod_p.cpython-314t-x86_64-linux-gnu.so,sha256=4kEP_8dBdoDYYAMfl6eUD3vCWPWtZUBAmuD2kfVnBgo,1033953
112
+ sage/rings/bernoulli_mod_p.pyx,sha256=oHBenGdOdNGQ-wiqrGyxPrS6d817-Dq5WYUTfn1Y3TU,8635
113
+ sage/rings/real_mpfi.pxd,sha256=EmXlZ4HBJvrHyUsLGxYEO-Da44mOUo5cLkVkdK4QK_I,2275
114
+ sage/rings/finite_rings/all__sagemath_ntl.py,sha256=Xwyux1QrLqYdsoF00d1SE1oXhFs5WGrg-2EvcGo2vHg,42
115
+ sage/rings/finite_rings/finite_field_ntl_gf2e.py,sha256=eOkpzO6l-HreeDfKH-5NOu-Cq2sZ0aPg0_aTbKFwmp4,9041
116
+ sage/rings/finite_rings/residue_field_ntl_gf2e.cpython-314t-x86_64-linux-gnu.so,sha256=HJ0nBj05eZzbTPBNMU38U_4OULBgN08P16c56mFMzaA,569840
117
+ sage/rings/finite_rings/residue_field_ntl_gf2e.pyx,sha256=7SnhSWOlQ9KAOUPuVKBeRzHIO2MyJ31GT_Teme7loSo,5582
118
+ sage/rings/padics/all__sagemath_ntl.py,sha256=E-LUA5MTppI03uZJnp1dSC05Tc3WpOV2OAP3sngARoI,170
119
+ sage/rings/padics/padic_ZZ_pX_CA_element.cpython-314t-x86_64-linux-gnu.so,sha256=3GlbpR3YBUkNhVUw9Ufgdij43W5KpzCfMcTrOLTmO9Y,2296185
120
+ sage/rings/padics/padic_ZZ_pX_CA_element.pxd,sha256=bDZkmJ5fhwFPmNsouX9TKZE3IionhV6AyoqO91yZhoU,1072
121
+ sage/rings/padics/padic_ZZ_pX_CA_element.pyx,sha256=zbzppxKm8sT1WPsnVe2EDTVo47W48lzZGVJfptG-BN4,93203
122
+ sage/rings/padics/padic_ZZ_pX_CR_element.cpython-314t-x86_64-linux-gnu.so,sha256=I4cmdCG4CaGgmDGa-xFlhuD8HwhuVYF-A1S11wosjqM,2784033
123
+ sage/rings/padics/padic_ZZ_pX_CR_element.pxd,sha256=kj7li0xDm4LH42RnSip6prLDwRlFRvO-xtFfaNR-HL8,1652
124
+ sage/rings/padics/padic_ZZ_pX_CR_element.pyx,sha256=J7_9Ih2IxSa_HdK-k06swMlhBapj0THbyck93cD9P4g,128216
125
+ sage/rings/padics/padic_ZZ_pX_FM_element.cpython-314t-x86_64-linux-gnu.so,sha256=ISvC24iMoWkmyPwsjphsE-ltnk4IXDMyXcn8WMQGhxw,2154257
126
+ sage/rings/padics/padic_ZZ_pX_FM_element.pxd,sha256=ZwRN2dmQV8TEPJsUx-PmDq7cuhaJuQzMwcUqMVUrA0g,478
127
+ sage/rings/padics/padic_ZZ_pX_FM_element.pyx,sha256=84gGtqwdFL_6TugOvdU5qrmvphrS60NTafQmuTaLqio,63637
128
+ sage/rings/padics/padic_ZZ_pX_element.cpython-314t-x86_64-linux-gnu.so,sha256=3Q_CfFAsPp0Z51RTYRPZ5FledVZugRuBpqSCVqvAl0o,1772937
129
+ sage/rings/padics/padic_ZZ_pX_element.pxd,sha256=lHgxYJMCoZ4SysipUtc7LvwcNGA474N0aQKs17xLfSY,257
130
+ sage/rings/padics/padic_ZZ_pX_element.pyx,sha256=40efYmNdYWTrpQwj54-0N7tlO6WCYp3jHSjQ51eyIrI,35597
131
+ sage/rings/padics/padic_ext_element.cpython-314t-x86_64-linux-gnu.so,sha256=QRieJLXDF4KCLNLj_AsxlUPm8Howchg_wzAjilTGhaY,1243329
132
+ sage/rings/padics/padic_ext_element.pxd,sha256=mEsTNvVU3yFhC4C_gZ1UY77ZM8VdgyLY38MdvTboe0s,2477
133
+ sage/rings/padics/padic_ext_element.pyx,sha256=8n70F9QLKDRtvEkFi4fvBQ8TXb0hJ3DqPXmAzCiQsa4,19219
134
+ sage/rings/padics/pow_computer_ext.cpython-314t-x86_64-linux-gnu.so,sha256=JELTzHbFKtlX-kyk-caWacinKxxkpu0qUYUV8XyJK1s,1913297
135
+ sage/rings/padics/pow_computer_ext.pxd,sha256=YvG3t7IHstUK0iwe4gUKHeaQk-yBMEQXbxlpV9EaSUI,3909
136
+ sage/rings/padics/pow_computer_ext.pyx,sha256=UaSrJ6tHk-EznxV9_4KsbU7LrayItP4IeXpawimulY8,98067
137
+ sage/rings/polynomial/all__sagemath_ntl.py,sha256=Xwyux1QrLqYdsoF00d1SE1oXhFs5WGrg-2EvcGo2vHg,42
138
+ sage/rings/polynomial/evaluation_ntl.cpython-314t-x86_64-linux-gnu.so,sha256=LlvtmNcvGWY2_mhniQbOgcc9cr1pdZMyFwH424UbotM,152049
139
+ sage/rings/polynomial/evaluation_ntl.pxd,sha256=Kd_Llh1N_eQPOwFuw7cohH9JKX6rQeTbvhhfqOdmce0,294
140
+ sage/rings/polynomial/evaluation_ntl.pyx,sha256=2XUnShnfILYo21W0u9mQWwZgjRGGwjTIldvlRYGOOnw,2207
141
+ sage/rings/polynomial/polynomial_gf2x.cpython-314t-x86_64-linux-gnu.so,sha256=UG71wcUXXI5TmmI-vOqRv78Y7e1FwMJ8FHJEsISCjRc,2499153
142
+ sage/rings/polynomial/polynomial_gf2x.pxd,sha256=5k6WjceWXj-HrcxWHAlSKJZ24taayZwz1TM7sa6hQUg,230
143
+ sage/rings/polynomial/polynomial_gf2x.pyx,sha256=5s-KIrfB6R4MfUFkI24u-LBNKNfFlQA88cGAfDhyBZs,12290
144
+ sage/rings/polynomial/polynomial_integer_dense_ntl.cpython-314t-x86_64-linux-gnu.so,sha256=6Rq7aEqo0GU9VSZcpGfKX8WKl7YHM_yFiEu2oXZTu3M,2507465
145
+ sage/rings/polynomial/polynomial_integer_dense_ntl.pxd,sha256=yjuyM2x15NwPeTJvQGHlwkwkOzZ1N5Mu69iNQHVbsxU,271
146
+ sage/rings/polynomial/polynomial_integer_dense_ntl.pyx,sha256=uq30JheunVy5Oj6HLMa_uxdFGfOfPYNdlL_fdiITIn0,36417
147
+ sage/rings/polynomial/polynomial_modn_dense_ntl.cpython-314t-x86_64-linux-gnu.so,sha256=-ICt7ipl17xcJJ3vH4mF548QAiWwDIxL9tssrZwoykY,4152761
148
+ sage/rings/polynomial/polynomial_modn_dense_ntl.pxd,sha256=hla7zO0d5xKdk1QmFdOYKs7N8FzoHZc48Jh2SWsFw1c,1170
149
+ sage/rings/polynomial/polynomial_modn_dense_ntl.pyx,sha256=n5dofN_D1OQhDKF7AvX8JY9k7mbvUDTfCnZ5xuQwl_A,68094
150
+ sage/rings/polynomial/polynomial_template.pxi,sha256=s6uzv_Md0jUBqTNzhhVTmppp1YGKvfT8wq-8SlEnmC8,29151
151
+ sage/rings/polynomial/polynomial_template_header.pxi,sha256=rj1tt1VARE7gqMcDzx0Z2VgILY6aocrOcnSH4-E7qkw,285
152
+ sage/rings/polynomial/polynomial_zz_pex.cpython-314t-x86_64-linux-gnu.so,sha256=Yq4Q4VVOHtK6ELtlvMBp7ys63JRk1nwrCUe6UleExBI,2707113
153
+ sage/rings/polynomial/polynomial_zz_pex.pxd,sha256=Dmy5t7VuoyNznuqctOMIhWd15JDeA2tYRJG7zxG-mus,433
154
+ sage/rings/polynomial/polynomial_zz_pex.pyx,sha256=GsyskCpNinPQyMb3nmWWTmyRGFG53Gnf9xPmQQNF374,26292
155
+ sage/schemes/all__sagemath_ntl.py,sha256=Xwyux1QrLqYdsoF00d1SE1oXhFs5WGrg-2EvcGo2vHg,42
156
+ sage/schemes/hyperelliptic_curves/all__sagemath_ntl.py,sha256=Xwyux1QrLqYdsoF00d1SE1oXhFs5WGrg-2EvcGo2vHg,42
157
+ sage/schemes/hyperelliptic_curves/hypellfrob.cpython-314t-x86_64-linux-gnu.so,sha256=sBJ_AADjaw3PnW6Q8yK3J4KoQOVx8onw3dO3Gp4uUVk,4258665
158
+ sage/schemes/hyperelliptic_curves/hypellfrob.pyx,sha256=WKiWqDsiAVlUGWCz3csHAFCrtYefsOH0-yNOuSfBO6s,9176
159
+ passagemath_ntl-10.8.1a1.dist-info/METADATA,sha256=lrAcWH8aTaxoIWt7DJkkI0I-kkHocqd95YfAo4xWw3Q,6403
160
+ passagemath_ntl-10.8.1a1.dist-info/WHEEL,sha256=KDLVWnCCjdUHhq-HUKP_K32a4difYNSH1EVoRV-4xUo,155
161
+ passagemath_ntl-10.8.1a1.dist-info/top_level.txt,sha256=NquYvwM8POIXmTauNjW2Nkom_V-yhyC6iSC3ebK81KQ,22
162
+ passagemath_ntl-10.8.1a1.dist-info/RECORD,,
@@ -0,0 +1,6 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.10.1)
3
+ Root-Is-Purelib: false
4
+ Tag: cp314-cp314t-manylinux_2_24_x86_64
5
+ Tag: cp314-cp314t-manylinux_2_28_x86_64
6
+
@@ -0,0 +1,3 @@
1
+
2
+ passagemath_ntl
3
+ 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)