passagemath-ntl 10.6.37__cp311-cp311-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.
Potentially problematic release.
This version of passagemath-ntl might be problematic. Click here for more details.
- passagemath_ntl/__init__.py +3 -0
- passagemath_ntl-10.6.37.dist-info/METADATA +122 -0
- passagemath_ntl-10.6.37.dist-info/RECORD +162 -0
- passagemath_ntl-10.6.37.dist-info/WHEEL +6 -0
- passagemath_ntl-10.6.37.dist-info/top_level.txt +3 -0
- passagemath_ntl.libs/libgf2x-fbd36f80.so.3.0.0 +0 -0
- passagemath_ntl.libs/libgmp-93ebf16a.so.10.5.0 +0 -0
- passagemath_ntl.libs/libmpfi-ad12a86d.so.0.0.0 +0 -0
- passagemath_ntl.libs/libmpfr-9d41ebf1.so.6.2.1 +0 -0
- passagemath_ntl.libs/libntl-0043a3a2.so.44.0.1 +0 -0
- sage/all__sagemath_ntl.py +7 -0
- sage/libs/all__sagemath_ntl.py +3 -0
- sage/libs/mpfi/__init__.pxd +287 -0
- sage/libs/mpfi/types.pxd +10 -0
- sage/libs/ntl/GF2.pxd +18 -0
- sage/libs/ntl/GF2E.pxd +28 -0
- sage/libs/ntl/GF2EX.pxd +12 -0
- sage/libs/ntl/GF2X.pxd +81 -0
- sage/libs/ntl/ZZ.pxd +93 -0
- sage/libs/ntl/ZZX.pxd +85 -0
- sage/libs/ntl/ZZ_p.pxd +28 -0
- sage/libs/ntl/ZZ_pE.pxd +37 -0
- sage/libs/ntl/ZZ_pEX.pxd +106 -0
- sage/libs/ntl/ZZ_pX.pxd +122 -0
- sage/libs/ntl/__init__.py +4 -0
- sage/libs/ntl/all.py +72 -0
- sage/libs/ntl/conversion.pxd +106 -0
- sage/libs/ntl/convert.cpython-311-aarch64-linux-gnu.so +0 -0
- sage/libs/ntl/convert.pxd +7 -0
- sage/libs/ntl/convert.pyx +38 -0
- sage/libs/ntl/decl.pxi +18 -0
- sage/libs/ntl/error.cpython-311-aarch64-linux-gnu.so +0 -0
- sage/libs/ntl/error.pyx +63 -0
- sage/libs/ntl/lzz_p.pxd +20 -0
- sage/libs/ntl/lzz_pX.pxd +59 -0
- sage/libs/ntl/mat_GF2.pxd +30 -0
- sage/libs/ntl/mat_GF2E.pxd +30 -0
- sage/libs/ntl/mat_ZZ.pxd +59 -0
- sage/libs/ntl/misc.pxi +33 -0
- sage/libs/ntl/ntl_GF2.cpython-311-aarch64-linux-gnu.so +0 -0
- sage/libs/ntl/ntl_GF2.pxd +5 -0
- sage/libs/ntl/ntl_GF2.pyx +281 -0
- sage/libs/ntl/ntl_GF2E.cpython-311-aarch64-linux-gnu.so +0 -0
- sage/libs/ntl/ntl_GF2E.pxd +8 -0
- sage/libs/ntl/ntl_GF2E.pyx +488 -0
- sage/libs/ntl/ntl_GF2EContext.cpython-311-aarch64-linux-gnu.so +0 -0
- sage/libs/ntl/ntl_GF2EContext.pxd +9 -0
- sage/libs/ntl/ntl_GF2EContext.pyx +134 -0
- sage/libs/ntl/ntl_GF2EX.cpython-311-aarch64-linux-gnu.so +0 -0
- sage/libs/ntl/ntl_GF2EX.pxd +10 -0
- sage/libs/ntl/ntl_GF2EX.pyx +251 -0
- sage/libs/ntl/ntl_GF2X.cpython-311-aarch64-linux-gnu.so +0 -0
- sage/libs/ntl/ntl_GF2X.pxd +5 -0
- sage/libs/ntl/ntl_GF2X.pyx +771 -0
- sage/libs/ntl/ntl_GF2X_linkage.pxi +404 -0
- sage/libs/ntl/ntl_ZZ.cpython-311-aarch64-linux-gnu.so +0 -0
- sage/libs/ntl/ntl_ZZ.pxd +7 -0
- sage/libs/ntl/ntl_ZZ.pyx +541 -0
- sage/libs/ntl/ntl_ZZX.cpython-311-aarch64-linux-gnu.so +0 -0
- sage/libs/ntl/ntl_ZZX.pxd +7 -0
- sage/libs/ntl/ntl_ZZX.pyx +1206 -0
- sage/libs/ntl/ntl_ZZ_p.cpython-311-aarch64-linux-gnu.so +0 -0
- sage/libs/ntl/ntl_ZZ_p.pxd +10 -0
- sage/libs/ntl/ntl_ZZ_p.pyx +509 -0
- sage/libs/ntl/ntl_ZZ_pContext.cpython-311-aarch64-linux-gnu.so +0 -0
- sage/libs/ntl/ntl_ZZ_pContext.pxd +22 -0
- sage/libs/ntl/ntl_ZZ_pContext.pyx +201 -0
- sage/libs/ntl/ntl_ZZ_pE.cpython-311-aarch64-linux-gnu.so +0 -0
- sage/libs/ntl/ntl_ZZ_pE.pxd +11 -0
- sage/libs/ntl/ntl_ZZ_pE.pyx +349 -0
- sage/libs/ntl/ntl_ZZ_pEContext.cpython-311-aarch64-linux-gnu.so +0 -0
- sage/libs/ntl/ntl_ZZ_pEContext.pxd +23 -0
- sage/libs/ntl/ntl_ZZ_pEContext.pyx +226 -0
- sage/libs/ntl/ntl_ZZ_pEX.cpython-311-aarch64-linux-gnu.so +0 -0
- sage/libs/ntl/ntl_ZZ_pEX.pxd +10 -0
- sage/libs/ntl/ntl_ZZ_pEX.pyx +1255 -0
- sage/libs/ntl/ntl_ZZ_pEX_linkage.pxi +420 -0
- sage/libs/ntl/ntl_ZZ_pX.cpython-311-aarch64-linux-gnu.so +0 -0
- sage/libs/ntl/ntl_ZZ_pX.pxd +17 -0
- sage/libs/ntl/ntl_ZZ_pX.pyx +1532 -0
- sage/libs/ntl/ntl_lzz_p.cpython-311-aarch64-linux-gnu.so +0 -0
- sage/libs/ntl/ntl_lzz_p.pxd +8 -0
- sage/libs/ntl/ntl_lzz_p.pyx +440 -0
- sage/libs/ntl/ntl_lzz_pContext.cpython-311-aarch64-linux-gnu.so +0 -0
- sage/libs/ntl/ntl_lzz_pContext.pxd +7 -0
- sage/libs/ntl/ntl_lzz_pContext.pyx +137 -0
- sage/libs/ntl/ntl_lzz_pX.cpython-311-aarch64-linux-gnu.so +0 -0
- sage/libs/ntl/ntl_lzz_pX.pxd +10 -0
- sage/libs/ntl/ntl_lzz_pX.pyx +902 -0
- sage/libs/ntl/ntl_mat_GF2.cpython-311-aarch64-linux-gnu.so +0 -0
- sage/libs/ntl/ntl_mat_GF2.pxd +8 -0
- sage/libs/ntl/ntl_mat_GF2.pyx +612 -0
- sage/libs/ntl/ntl_mat_GF2E.cpython-311-aarch64-linux-gnu.so +0 -0
- sage/libs/ntl/ntl_mat_GF2E.pxd +10 -0
- sage/libs/ntl/ntl_mat_GF2E.pyx +752 -0
- sage/libs/ntl/ntl_mat_ZZ.cpython-311-aarch64-linux-gnu.so +0 -0
- sage/libs/ntl/ntl_mat_ZZ.pxd +6 -0
- sage/libs/ntl/ntl_mat_ZZ.pyx +1523 -0
- sage/libs/ntl/ntl_tools.pxd +3 -0
- sage/libs/ntl/ntlwrap.h +53 -0
- sage/libs/ntl/ntlwrap_impl.h +743 -0
- sage/libs/ntl/types.pxd +157 -0
- sage/libs/ntl/vec_GF2.pxd +26 -0
- sage/libs/ntl/vec_GF2E.pxd +2 -0
- sage/matrix/all__sagemath_ntl.py +1 -0
- sage/matrix/matrix_modn_dense_double.pxd +10 -0
- sage/matrix/matrix_modn_dense_float.pxd +9 -0
- sage/matrix/matrix_modn_dense_template.pxi +3257 -0
- sage/matrix/matrix_modn_dense_template_header.pxi +15 -0
- sage/matrix/matrix_modn_sparse.pxd +8 -0
- sage/misc/all__sagemath_ntl.py +1 -0
- sage/rings/all__sagemath_ntl.py +7 -0
- sage/rings/bernmm.cpython-311-aarch64-linux-gnu.so +0 -0
- sage/rings/bernmm.pyx +161 -0
- sage/rings/bernoulli_mod_p.cpython-311-aarch64-linux-gnu.so +0 -0
- sage/rings/bernoulli_mod_p.pyx +313 -0
- sage/rings/finite_rings/all__sagemath_ntl.py +1 -0
- sage/rings/finite_rings/finite_field_ntl_gf2e.py +305 -0
- sage/rings/finite_rings/residue_field_ntl_gf2e.cpython-311-aarch64-linux-gnu.so +0 -0
- sage/rings/finite_rings/residue_field_ntl_gf2e.pyx +140 -0
- sage/rings/padics/all__sagemath_ntl.py +5 -0
- sage/rings/padics/padic_ZZ_pX_CA_element.cpython-311-aarch64-linux-gnu.so +0 -0
- sage/rings/padics/padic_ZZ_pX_CA_element.pxd +25 -0
- sage/rings/padics/padic_ZZ_pX_CA_element.pyx +2368 -0
- sage/rings/padics/padic_ZZ_pX_CR_element.cpython-311-aarch64-linux-gnu.so +0 -0
- sage/rings/padics/padic_ZZ_pX_CR_element.pxd +33 -0
- sage/rings/padics/padic_ZZ_pX_CR_element.pyx +3277 -0
- sage/rings/padics/padic_ZZ_pX_FM_element.cpython-311-aarch64-linux-gnu.so +0 -0
- sage/rings/padics/padic_ZZ_pX_FM_element.pxd +12 -0
- sage/rings/padics/padic_ZZ_pX_FM_element.pyx +1739 -0
- sage/rings/padics/padic_ZZ_pX_element.cpython-311-aarch64-linux-gnu.so +0 -0
- sage/rings/padics/padic_ZZ_pX_element.pxd +6 -0
- sage/rings/padics/padic_ZZ_pX_element.pyx +919 -0
- sage/rings/padics/padic_ext_element.cpython-311-aarch64-linux-gnu.so +0 -0
- sage/rings/padics/padic_ext_element.pxd +38 -0
- sage/rings/padics/padic_ext_element.pyx +512 -0
- sage/rings/padics/pow_computer_ext.cpython-311-aarch64-linux-gnu.so +0 -0
- sage/rings/padics/pow_computer_ext.pxd +107 -0
- sage/rings/padics/pow_computer_ext.pyx +2401 -0
- sage/rings/polynomial/all__sagemath_ntl.py +1 -0
- sage/rings/polynomial/evaluation_ntl.cpython-311-aarch64-linux-gnu.so +0 -0
- sage/rings/polynomial/evaluation_ntl.pxd +7 -0
- sage/rings/polynomial/evaluation_ntl.pyx +70 -0
- sage/rings/polynomial/polynomial_gf2x.cpython-311-aarch64-linux-gnu.so +0 -0
- sage/rings/polynomial/polynomial_gf2x.pxd +10 -0
- sage/rings/polynomial/polynomial_gf2x.pyx +364 -0
- sage/rings/polynomial/polynomial_integer_dense_ntl.cpython-311-aarch64-linux-gnu.so +0 -0
- sage/rings/polynomial/polynomial_integer_dense_ntl.pxd +8 -0
- sage/rings/polynomial/polynomial_integer_dense_ntl.pyx +1128 -0
- sage/rings/polynomial/polynomial_modn_dense_ntl.cpython-311-aarch64-linux-gnu.so +0 -0
- sage/rings/polynomial/polynomial_modn_dense_ntl.pxd +36 -0
- sage/rings/polynomial/polynomial_modn_dense_ntl.pyx +2049 -0
- sage/rings/polynomial/polynomial_template.pxi +842 -0
- sage/rings/polynomial/polynomial_template_header.pxi +11 -0
- sage/rings/polynomial/polynomial_zz_pex.cpython-311-aarch64-linux-gnu.so +0 -0
- sage/rings/polynomial/polynomial_zz_pex.pxd +12 -0
- sage/rings/polynomial/polynomial_zz_pex.pyx +778 -0
- sage/rings/real_mpfi.pxd +50 -0
- sage/schemes/all__sagemath_ntl.py +1 -0
- sage/schemes/hyperelliptic_curves/all__sagemath_ntl.py +1 -0
- sage/schemes/hyperelliptic_curves/hypellfrob.cpython-311-aarch64-linux-gnu.so +0 -0
- 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.37
|
|
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.37.0
|
|
36
|
+
Requires-Dist: passagemath-categories~=10.6.37.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,162 @@
|
|
|
1
|
+
passagemath_ntl/__init__.py,sha256=ll2Bn9wg-UAGeO4sXZcrHKsetnH65QwZhM5xPKKSZ4E,80
|
|
2
|
+
passagemath_ntl.libs/libgf2x-fbd36f80.so.3.0.0,sha256=ghiNCOG3X9WUVunXdSbxLLKexidJV4JmaAmU0nIcbAs,330433
|
|
3
|
+
passagemath_ntl.libs/libgmp-93ebf16a.so.10.5.0,sha256=J_oguU4vvekVCVuY5w0xJjRsPinQWaZ9HqUVq6yFhas,668537
|
|
4
|
+
passagemath_ntl.libs/libmpfi-ad12a86d.so.0.0.0,sha256=V9lE1mSPsHFELRZ_kZVmMVpdBNau-ShuBgj4Fc3M2dk,793009
|
|
5
|
+
passagemath_ntl.libs/libmpfr-9d41ebf1.so.6.2.1,sha256=FOAwd1MXi2r6neQQ8hK2PLPyEaTxHfBd-h6phIuPp0U,932097
|
|
6
|
+
passagemath_ntl.libs/libntl-0043a3a2.so.44.0.1,sha256=Eu2aJF-gU3DZGc733lg8jDMYsEt44i3jr-zmboWQWhw,3010089
|
|
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-311-aarch64-linux-gnu.so,sha256=xbCXD_jGWRVLqR0l0uF4JVTGdwvqB7Oi9W79kq8naus,397673
|
|
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-311-aarch64-linux-gnu.so,sha256=dBMt1gc2L_DDwMtCb1tpbNTQx7FuLBLk5pOIErXA0bg,463177
|
|
29
|
+
sage/libs/ntl/error.pyx,sha256=2nqfOXIZaV43mOqAQgViklJ2vVnAtCNbkHrdy-NLygY,1769
|
|
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-311-aarch64-linux-gnu.so,sha256=pEeZqChoghyx8bAdnKwFhqRHu-0Lvsxz07SzQcyg6AI,858961
|
|
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-311-aarch64-linux-gnu.so,sha256=Yzw0ijhGRnzkhmJ0zQS2Y-zoyNfi0Mj9SVmkzO5UY8o,990425
|
|
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-311-aarch64-linux-gnu.so,sha256=ghrX2dHXazWJaPBORGlV8rvd08Bo4aqRAwyBCyDGz80,726905
|
|
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-311-aarch64-linux-gnu.so,sha256=Wlm2OQ-c2w3MZHH_2g8p_Bjl4DvfgGwIeZh2Ak2S5nk,859145
|
|
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-311-aarch64-linux-gnu.so,sha256=j8k9XMmYB5d0hx0i_AYYTntvwJCPxUbEAT86219hOTM,1455433
|
|
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-311-aarch64-linux-gnu.so,sha256=kkgLPA65aNjT1MIsfuyx4czoXzczSLJlpQw2qnUfpKg,1253113
|
|
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-311-aarch64-linux-gnu.so,sha256=Wa4NtGu2YgiSPDBTUgzT64QUUaOJ0La-qUHzySiZorc,1713225
|
|
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-311-aarch64-linux-gnu.so,sha256=HwXLv54zjCb7X3fb10bGHAxrPvzwENeKjCLKGh-caK4,1121881
|
|
59
|
+
sage/libs/ntl/ntl_ZZ_p.pxd,sha256=erL2upd1kw4EhJB_QcdjoZWECdsfm-pfiHhOXLVZ1m0,361
|
|
60
|
+
sage/libs/ntl/ntl_ZZ_p.pyx,sha256=5n3o7aABf7wGcO2BDFdJDNlq8a75RyMV2sm6ZqEjY5k,14606
|
|
61
|
+
sage/libs/ntl/ntl_ZZ_pContext.cpython-311-aarch64-linux-gnu.so,sha256=7KuSTAKpgiLa2MIgyPA05nJLszoJSzOvMRHaQ_gAx_4,924729
|
|
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-311-aarch64-linux-gnu.so,sha256=H_vcZWQTGFJKYkdtGqSr0ty2DbXm4GMK0Z0jFENf998,1121969
|
|
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-311-aarch64-linux-gnu.so,sha256=CNcdmFwH6TRILRflUm5AwLnFrxwmjmQBTc3tYcSuHFM,990217
|
|
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-311-aarch64-linux-gnu.so,sha256=5A-2DeW2loU1mYE32ocY8gj5pp5EwNsqRMgEImGXFfU,1581777
|
|
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-311-aarch64-linux-gnu.so,sha256=t3PUPH97LxduDLPM2LlaqxiH2fbcPZ8CoyI9xBRZoeQ,2048713
|
|
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-311-aarch64-linux-gnu.so,sha256=n8-hcs_A66Eeu9hu6hWmKDXA1VohRXFUOK--Iqc74Bk,923441
|
|
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-311-aarch64-linux-gnu.so,sha256=6VDHUenKnnh_8CgKj34v1v6j2cVCcnwXITra18dtlmk,791697
|
|
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-311-aarch64-linux-gnu.so,sha256=YxD3VDPhCWIO_Rx5_yEJ3NBLpt_eU3wYflZGUgNHgSE,1388153
|
|
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-311-aarch64-linux-gnu.so,sha256=cG8FcrlIbiPZMBimmBCRNe43kbrfp-P6sZhQ-ndq_sU,1449809
|
|
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-311-aarch64-linux-gnu.so,sha256=KHkTqpcCkES2IjuUJr-FzxaeQ0tBpmwkbM1oNNN4UGM,1520481
|
|
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-311-aarch64-linux-gnu.so,sha256=w3hZ5swlBtZsg7EnKcLavdyxCdTxieSf2w7a6H1vWVs,2047161
|
|
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=8voaX61_Rt6nBn1lW2aAvx-HnpfkCeI1SapYGWBlEDI,53556
|
|
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=c_DM8kBexHD0sfiHtBBqNUZOJMdyX4Ducpa1fR9H5IY,106062
|
|
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-311-aarch64-linux-gnu.so,sha256=phfwlHIiimQREXwvgJSmTUoE2Qm2GY1aeM4eRJwFYs0,924025
|
|
110
|
+
sage/rings/bernmm.pyx,sha256=GU840d0toDlqzcXHPDdH7_MYBWoy7EfDUr8hB6Re_xU,4826
|
|
111
|
+
sage/rings/bernoulli_mod_p.cpython-311-aarch64-linux-gnu.so,sha256=7IKy3_5AyhXT_8f-rN7YgP3i5Kzs20TFv2O81wy7WB0,856969
|
|
112
|
+
sage/rings/bernoulli_mod_p.pyx,sha256=uHy-t2vxbhYlRJhAMO0cOKSbSiRsdZ2ZIqD1Xaclt7U,8677
|
|
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=8zRWQ8ntdG99vtTPi7x-bzgeBi59Pxv49YYdLtXuU2Q,8897
|
|
116
|
+
sage/rings/finite_rings/residue_field_ntl_gf2e.cpython-311-aarch64-linux-gnu.so,sha256=UXmbwhaq5z2jiVZp782be5YI59dncT78RVGB3XrRbcY,560120
|
|
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-311-aarch64-linux-gnu.so,sha256=tVH82dZKm5NmNDZ60wx2bzenQLp3T9WYQ3ieXllr0F8,2434873
|
|
120
|
+
sage/rings/padics/padic_ZZ_pX_CA_element.pxd,sha256=bDZkmJ5fhwFPmNsouX9TKZE3IionhV6AyoqO91yZhoU,1072
|
|
121
|
+
sage/rings/padics/padic_ZZ_pX_CA_element.pyx,sha256=bm06YwL-VctCzcwsejfg6cxJwLM2nbsUZYiBR8Kt2uA,93250
|
|
122
|
+
sage/rings/padics/padic_ZZ_pX_CR_element.cpython-311-aarch64-linux-gnu.so,sha256=YF6IBuIAUkwdA0BcGEqZucM5pySa7vth9wZrYy67c04,2959673
|
|
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=cQNF-p0omfwJQ7ODyNAwWgO9sDjA2VZJkA4L7BYPicM,128040
|
|
125
|
+
sage/rings/padics/padic_ZZ_pX_FM_element.cpython-311-aarch64-linux-gnu.so,sha256=EfixOXkBittFFqms7mjyAVT8lIvnF51cd2Ivfg7XlCU,2434777
|
|
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=5EAR3ZNcLqqkj-ValrbT9L1Yy1b_PXxu98iLjk39RzY,63686
|
|
128
|
+
sage/rings/padics/padic_ZZ_pX_element.cpython-311-aarch64-linux-gnu.so,sha256=nsef_6umvbS-0ygtnCCJ7WBpOtoOJbgx5ChVWQ5neso,1841889
|
|
129
|
+
sage/rings/padics/padic_ZZ_pX_element.pxd,sha256=lHgxYJMCoZ4SysipUtc7LvwcNGA474N0aQKs17xLfSY,257
|
|
130
|
+
sage/rings/padics/padic_ZZ_pX_element.pyx,sha256=CXukK4kqBcfgEReml1_AOy-5WNfcPoqDyfllgeIZroc,35633
|
|
131
|
+
sage/rings/padics/padic_ext_element.cpython-311-aarch64-linux-gnu.so,sha256=PFFn-zrtP6GgI23nh56n9J8LnHlg_qhy1brKi_-ZN9U,1119801
|
|
132
|
+
sage/rings/padics/padic_ext_element.pxd,sha256=mEsTNvVU3yFhC4C_gZ1UY77ZM8VdgyLY38MdvTboe0s,2477
|
|
133
|
+
sage/rings/padics/padic_ext_element.pyx,sha256=qXWc2jZt7WRPQKDPQAklc_ouNNoTpEPx_ZOs0Tj-foo,19205
|
|
134
|
+
sage/rings/padics/pow_computer_ext.cpython-311-aarch64-linux-gnu.so,sha256=VtJnVj-pyakc9U283G6Qilt7VB33X4lkWXQgXg-KkLM,2039489
|
|
135
|
+
sage/rings/padics/pow_computer_ext.pxd,sha256=YvG3t7IHstUK0iwe4gUKHeaQk-yBMEQXbxlpV9EaSUI,3909
|
|
136
|
+
sage/rings/padics/pow_computer_ext.pyx,sha256=ARN5hdbEOA-KcFI1r5aTEIGG_lqegUyid4MgfYOy-U8,98055
|
|
137
|
+
sage/rings/polynomial/all__sagemath_ntl.py,sha256=Xwyux1QrLqYdsoF00d1SE1oXhFs5WGrg-2EvcGo2vHg,42
|
|
138
|
+
sage/rings/polynomial/evaluation_ntl.cpython-311-aarch64-linux-gnu.so,sha256=mTMUfQIoFc1Q6NnTRgg5VUp1f5_jtInt05cqMC4dI38,397617
|
|
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-311-aarch64-linux-gnu.so,sha256=0EKrTQ-NL1PN1RsGkTUHacNBhPG1PDBtQpab-sGAh0M,2703033
|
|
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-311-aarch64-linux-gnu.so,sha256=muom67lV1d_-l188UyeIJa7xNnDaNyuNir7Y2pDm3yE,2571809
|
|
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-311-aarch64-linux-gnu.so,sha256=fycxD_9sc6uU3tTk_5EEm1Ve2EF-c7CFDgCW2Kr-I50,4078785
|
|
148
|
+
sage/rings/polynomial/polynomial_modn_dense_ntl.pxd,sha256=hla7zO0d5xKdk1QmFdOYKs7N8FzoHZc48Jh2SWsFw1c,1170
|
|
149
|
+
sage/rings/polynomial/polynomial_modn_dense_ntl.pyx,sha256=-gJXcsQ_cts8WrMuOIR6ZNMmzffvEacl04J6y4Fe1tQ,68031
|
|
150
|
+
sage/rings/polynomial/polynomial_template.pxi,sha256=b2GeTLSwje5NYcq1rsChy7XjKQHAUJcNiuJt1ENFZg8,29219
|
|
151
|
+
sage/rings/polynomial/polynomial_template_header.pxi,sha256=rj1tt1VARE7gqMcDzx0Z2VgILY6aocrOcnSH4-E7qkw,285
|
|
152
|
+
sage/rings/polynomial/polynomial_zz_pex.cpython-311-aarch64-linux-gnu.so,sha256=lJ6nZDzXmrHDNgxOxswcQLUKcKpQt45WcSkP4q_FAd4,2829481
|
|
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-311-aarch64-linux-gnu.so,sha256=AbggqUWtDb3oQR9nb6t9PYqI8BSCLfE0BLMlO5gwnkQ,4081673
|
|
158
|
+
sage/schemes/hyperelliptic_curves/hypellfrob.pyx,sha256=_t9PMPJucAG_ikxTrFOb2zNjp8W6vuo2ga41U6mv3yA,9119
|
|
159
|
+
passagemath_ntl-10.6.37.dist-info/METADATA,sha256=evzJFt0oMls6HE09wu2BWDQgDilDnJwb53SK2MLJLxw,6444
|
|
160
|
+
passagemath_ntl-10.6.37.dist-info/WHEEL,sha256=kd1DLlG2bxeAxn5uI-koj2s6omEUi3sgz5Bccpa-idw,154
|
|
161
|
+
passagemath_ntl-10.6.37.dist-info/top_level.txt,sha256=NquYvwM8POIXmTauNjW2Nkom_V-yhyC6iSC3ebK81KQ,22
|
|
162
|
+
passagemath_ntl-10.6.37.dist-info/RECORD,,
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -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)
|
sage/libs/mpfi/types.pxd
ADDED
|
@@ -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)
|