passagemath-gap-pkg-float 10.8.1a4__cp311-cp311-macosx_13_0_x86_64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. gap/pkg/float/COPYING +340 -0
  2. gap/pkg/float/PackageInfo.g +109 -0
  3. gap/pkg/float/README.md +76 -0
  4. gap/pkg/float/THANKS +1 -0
  5. gap/pkg/float/TODO +9 -0
  6. gap/pkg/float/bin/x86_64-apple-darwin24-default64-kv10/float.so +0 -0
  7. gap/pkg/float/build-aux/compile +348 -0
  8. gap/pkg/float/build-aux/config.guess~ +1748 -0
  9. gap/pkg/float/build-aux/config.sub~ +1884 -0
  10. gap/pkg/float/build-aux/depcomp +791 -0
  11. gap/pkg/float/build-aux/install-sh +541 -0
  12. gap/pkg/float/build-aux/install-sh~ +541 -0
  13. gap/pkg/float/build-aux/ltmain.sh +11524 -0
  14. gap/pkg/float/build-aux/missing +215 -0
  15. gap/pkg/float/config.h.in +105 -0
  16. gap/pkg/float/init.g +51 -0
  17. gap/pkg/float/lib/cxsc.gi +604 -0
  18. gap/pkg/float/lib/float.gd +187 -0
  19. gap/pkg/float/lib/fplll.gi +27 -0
  20. gap/pkg/float/lib/mpc.gi +243 -0
  21. gap/pkg/float/lib/mpfi.gi +270 -0
  22. gap/pkg/float/lib/mpfr.gi +328 -0
  23. gap/pkg/float/lib/pickle.g +131 -0
  24. gap/pkg/float/lib/polynomial.gi +12 -0
  25. gap/pkg/float/lib/pslq.gi +431 -0
  26. gap/pkg/float/libtool +12190 -0
  27. gap/pkg/float/makedoc.g +11 -0
  28. gap/pkg/float/read.g +46 -0
  29. gap/pkg/float/tst/arithmetic.tst +35 -0
  30. gap/pkg/float/tst/fplll.tst +19 -0
  31. gap/pkg/float/tst/polynomials.tst +30 -0
  32. gap/pkg/float/tst/testall.g +63 -0
  33. passagemath_gap_pkg_float/.dylibs/libfplll.9.dylib +0 -0
  34. passagemath_gap_pkg_float/.dylibs/libgmp.10.dylib +0 -0
  35. passagemath_gap_pkg_float/.dylibs/libmpc.3.dylib +0 -0
  36. passagemath_gap_pkg_float/.dylibs/libmpfi.0.dylib +0 -0
  37. passagemath_gap_pkg_float/.dylibs/libmpfr.6.dylib +0 -0
  38. passagemath_gap_pkg_float/__init__.py +3 -0
  39. passagemath_gap_pkg_float-10.8.1a4.dist-info/METADATA +92 -0
  40. passagemath_gap_pkg_float-10.8.1a4.dist-info/METADATA.bak +93 -0
  41. passagemath_gap_pkg_float-10.8.1a4.dist-info/RECORD +46 -0
  42. passagemath_gap_pkg_float-10.8.1a4.dist-info/WHEEL +6 -0
  43. passagemath_gap_pkg_float-10.8.1a4.dist-info/top_level.txt +2 -0
  44. sage/all__sagemath_gap_pkg_float.py +1 -0
  45. sage/libs/all__sagemath_gap_pkg_float.py +1 -0
  46. sage/libs/gap_pkg_float.cpython-311-darwin.so +0 -0
@@ -0,0 +1,11 @@
1
+ #if fail = LoadPackage("AutoDoc", ">= 2016.01.21") then
2
+ # Error("AutoDoc 2016.01.21 or newer is required");
3
+ #fi;
4
+ #AutoDoc(rec(gapdoc := rec(files:=["PackageInfo.g"])));
5
+
6
+ MakeGAPDocDoc("doc","float",
7
+ ["../lib/float.gd","../lib/pslq.gi","../PackageInfo.g"],"float","MathJax");
8
+ CopyHTMLStyleFiles("doc");
9
+ GAPDocManualLab("Float");
10
+
11
+ QUIT;
gap/pkg/float/read.g ADDED
@@ -0,0 +1,46 @@
1
+ #############################################################################
2
+ ##
3
+ #W read.g Laurent Bartholdi
4
+ ##
5
+ #Y Copyright (C) 2008, Laurent Bartholdi
6
+ ##
7
+ #############################################################################
8
+ ##
9
+ ## This file reads the implementations, and in principle could be reloaded
10
+ ## during a GAP session.
11
+ #############################################################################
12
+
13
+ #############################################################################
14
+ ##
15
+ #R Read the install files.
16
+ ##
17
+ ReadPackage("float", "lib/polynomial.gi");
18
+ ReadPackage("float", "lib/pslq.gi");
19
+
20
+ if IsBound(MPFR_INT) then
21
+ ReadPackage("float", "lib/mpfr.gi");
22
+ fi;
23
+ if IsBound(MPFI_INT) then
24
+ ReadPackage("float", "lib/mpfi.gi");
25
+ fi;
26
+ if IsBound(MPC_INT) then
27
+ ReadPackage("float", "lib/mpc.gi");
28
+ fi;
29
+ if IsBound(@FPLLL) then
30
+ ReadPackage("float", "lib/fplll.gi");
31
+ fi;
32
+ if IsBound(CXSC_INT) then
33
+ ReadPackage("float", "lib/cxsc.gi");
34
+ fi;
35
+
36
+ if IsBound(IO_Pickle) then
37
+ ReadPackage("float","lib/pickle.g");
38
+ else
39
+ if not IsBound(IO_PkgThingsToRead) then
40
+ IO_PkgThingsToRead := [];
41
+ fi;
42
+ Add(IO_PkgThingsToRead, ["float","lib/pickle.g"]);
43
+ fi;
44
+ #############################################################################
45
+
46
+ #E read.g . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ends here
@@ -0,0 +1,35 @@
1
+ #############################################################################
2
+ ##
3
+ #W arithmetic.tst Float Package Laurent Bartholdi
4
+ ##
5
+ #Y Copyright (C) 2011, Laurent Bartholdi
6
+ ##
7
+ #############################################################################
8
+ ##
9
+ ## This file tests basic arithmetic
10
+ ##
11
+ #############################################################################
12
+
13
+ gap> START_TEST("arithmetic");
14
+ gap>
15
+ gap> x := 1.0;;
16
+ gap> IsFloat(x);
17
+ true
18
+ gap> IsOne(x);
19
+ true
20
+ gap> IsZero(x);
21
+ false
22
+ gap> y := 4*Atan(x);;
23
+ gap> IsFloat(y);
24
+ true
25
+ gap> y > 3.14 and y < 3.15;
26
+ true
27
+ gap> x+x = 2.0;
28
+ true
29
+ gap> x-x = 0.0;
30
+ true
31
+ gap> Sqrt(x) = 1.0;
32
+ true
33
+ gap> AbsoluteValue(Sin(y)) < 1.e-10;
34
+ true
35
+ gap> STOP_TEST( "arithmetic.tst", 3*10^8 );
@@ -0,0 +1,19 @@
1
+ #############################################################################
2
+ ##
3
+ #W fplll.tst Float Package Laurent Bartholdi
4
+ ##
5
+ #Y Copyright (C) 2016, Laurent Bartholdi
6
+ ##
7
+ #############################################################################
8
+ ##
9
+ ## This file tests the fplll library
10
+ ##
11
+ #############################################################################
12
+
13
+ gap> START_TEST("fplll");
14
+ gap> FPLLLReducedBasis([[100,0,0],[0,100,0],[1,2,3]]);
15
+ [ [ 1, 2, 3 ], [ -14, 72, -42 ], [ 93, -14, -21 ] ]
16
+ gap> STOP_TEST( "fplll.tst", 3*10^8 );
17
+ fplll
18
+
19
+ #E fplll.tst . . . . . . . . . . . . . . . . . . . . . . . . . . . .ends here
@@ -0,0 +1,30 @@
1
+ #############################################################################
2
+ ##
3
+ #W polynomials.tst Float Package Laurent Bartholdi
4
+ ##
5
+ #Y Copyright (C) 2013, Laurent Bartholdi
6
+ ##
7
+ #############################################################################
8
+ ##
9
+ ## This file tests polynomials
10
+ ##
11
+ #############################################################################
12
+
13
+ gap> START_TEST("polynomials");
14
+ gap> x := Indeterminate(field,"x");
15
+ x
16
+ gap> x+1;; x+1.0;; 1+x;; 1-x;; 1*x;; 1.0*x;; x*1.0;; x*x;
17
+ x^2
18
+ gap> Value(x^2+1,2)=5.0;
19
+ true
20
+ gap> roots := [0.1,0.1,0.1,0.5,0.6,0.7];;
21
+ gap> poly := Product(x-roots);;
22
+ gap> newroots := RootsFloat(poly);;
23
+ gap> Filtered([1..3],i->AbsoluteValue(roots[i]-newroots[i])>1.e-6);
24
+ [ ]
25
+ gap> Filtered([4..Length(roots)],i->AbsoluteValue(roots[i]-newroots[i])>1.e-14);
26
+ [ ]
27
+ gap> STOP_TEST( "polynomials.tst", 3*10^8 );
28
+ polynomials
29
+
30
+ #E polynomials.tst . . . . . . . . . . . . . . . . . . . . . . . . .ends here
@@ -0,0 +1,63 @@
1
+ LoadPackage("float");
2
+ SetInfoLevel(InfoFloat,1);
3
+ dirs := DirectoriesPackageLibrary("float","tst");
4
+
5
+ success := true;
6
+
7
+ # test machine floats
8
+ SetFloats(IEEE754FLOAT);
9
+ success := success and Test(Filename(dirs,"arithmetic.tst"));
10
+
11
+ if IsBound(MPFR_INT) then
12
+ Print("#I testing MPFR...\n");
13
+ SetFloats(MPFR);
14
+ success := success and Test(Filename(dirs,"arithmetic.tst"));
15
+ else
16
+ Print("#I WARNING: skipping tests for MPFR\n");
17
+ fi;
18
+
19
+ if IsBound(MPFI_INT) then
20
+ Print("#I testing MPFI...\n");
21
+ SetFloats(MPFI);
22
+ success := success and Test(Filename(dirs,"arithmetic.tst"));
23
+ else
24
+ Print("#I WARNING: skipping tests for MPFI\n");
25
+ fi;
26
+
27
+ if IsBound(MPC_INT) then
28
+ Print("#I testing MPC...\n");
29
+ SetFloats(MPC);
30
+ success := success and Test(Filename(dirs,"arithmetic.tst"));
31
+
32
+ field := MPC_PSEUDOFIELD;
33
+ success := success and Test(Filename(dirs,"polynomials.tst"));
34
+ else
35
+ Print("#I WARNING: skipping tests for MPC\n");
36
+ fi;
37
+
38
+ if IsBound(CXSC_INT) then
39
+ Print("#I testing CXSC...\n");
40
+ SetFloats(CXSC);
41
+ success := success and Test(Filename(dirs,"arithmetic.tst"));
42
+
43
+ field := CXSC_PSEUDOFIELD;
44
+ success := success and Test(Filename(dirs,"polynomials.tst"));
45
+ else
46
+ Print("#I WARNING: skipping tests for CXSC\n");
47
+ fi;
48
+
49
+ if IsBound(@FPLLL) then
50
+ Print("#I testing FPLLL...\n");
51
+ success := success and Test(Filename(dirs,"fplll.tst"));
52
+ else
53
+ Print("#I WARNING: skipping tests for FPLLL\n");
54
+ fi;
55
+
56
+ # Report test results
57
+ if success then
58
+ Print("#I No errors detected while testing package float\n");
59
+ QUIT_GAP(0);
60
+ else
61
+ Print("#I Errors detected while testing package float\n");
62
+ QUIT_GAP(1);
63
+ fi;
@@ -0,0 +1,3 @@
1
+ # sage_setup: distribution = sagemath-gap-pkg-float
2
+
3
+ from sage.all__sagemath_gap_pkg_float import *
@@ -0,0 +1,92 @@
1
+ Metadata-Version: 2.4
2
+ Name: passagemath-gap-pkg-float
3
+ Version: 10.8.1a4
4
+ Summary: passagemath: Computational Group Theory with GAP: float package
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: passagemath-environment==10.8.1.alpha4
32
+
33
+ =========================================================================
34
+ passagemath: Computational Group Theory with GAP: float package
35
+ =========================================================================
36
+
37
+ `passagemath <https://github.com/passagemath/passagemath>`__ is open
38
+ source mathematical software in Python, released under the GNU General
39
+ Public Licence GPLv2+.
40
+
41
+ It is a fork of `SageMath <https://www.sagemath.org/>`__, which has been
42
+ developed 2005-2025 under the motto “Creating a Viable Open Source
43
+ Alternative to Magma, Maple, Mathematica, and MATLAB”.
44
+
45
+ The passagemath fork uses the motto "Creating a Free Passage Between the
46
+ Scientific Python Ecosystem and Mathematical Software Communities."
47
+ It was created in October 2024 with the following goals:
48
+
49
+ - providing modularized installation with pip,
50
+ - establishing first-class membership in the scientific Python
51
+ ecosystem,
52
+ - giving `clear attribution of upstream
53
+ projects <https://groups.google.com/g/sage-devel/c/6HO1HEtL1Fs/m/G002rPGpAAAJ>`__,
54
+ - providing independently usable Python interfaces to upstream
55
+ libraries,
56
+ - offering `platform portability and integration testing
57
+ services <https://github.com/passagemath/passagemath/issues/704>`__
58
+ to upstream projects,
59
+ - inviting collaborations with upstream projects,
60
+ - `building a professional, respectful, inclusive
61
+ community <https://groups.google.com/g/sage-devel/c/xBzaINHWwUQ>`__,
62
+ - `empowering Sage users to participate in the scientific Python ecosystem
63
+ <https://github.com/passagemath/passagemath/issues/248>`__ by publishing packages,
64
+ - developing a port to `Pyodide <https://pyodide.org/en/stable/>`__ for
65
+ serverless deployment with Javascript,
66
+ - developing a native Windows port.
67
+
68
+ `Full documentation <https://passagemath.org/docs/latest/html/en/index.html>`__ is
69
+ available online.
70
+
71
+ passagemath attempts to support and provides binary wheels suitable for
72
+ all major Linux distributions and recent versions of macOS.
73
+
74
+ Binary wheels for native Windows (x86_64) are are available for a subset of
75
+ the passagemath distributions. Use of the full functionality of passagemath
76
+ on Windows currently requires the use of Windows Subsystem for Linux (WSL)
77
+ or virtualization.
78
+
79
+ The supported Python versions in the passagemath 10.6.x series are 3.10.x-3.14.x.
80
+
81
+
82
+ About this pip-installable distribution package
83
+ -----------------------------------------------
84
+
85
+ This pip-installable distribution ``passagemath-gap-pkg-float`` is a
86
+ distribution of the GAP package ``float`` for use with ``passagemath-gap``.
87
+
88
+
89
+ What is included
90
+ ----------------
91
+
92
+ - Wheels on PyPI include the GAP package ``float``
@@ -0,0 +1,93 @@
1
+ Metadata-Version: 2.4
2
+ Name: passagemath-gap-pkg-float
3
+ Version: 10.8.1a4
4
+ Summary: passagemath: Computational Group Theory with GAP: float package
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: passagemath-conf==10.8.1.alpha4; sys_platform != "win32"
32
+ Requires-Dist: passagemath-environment==10.8.1.alpha4
33
+
34
+ =========================================================================
35
+ passagemath: Computational Group Theory with GAP: float package
36
+ =========================================================================
37
+
38
+ `passagemath <https://github.com/passagemath/passagemath>`__ is open
39
+ source mathematical software in Python, released under the GNU General
40
+ Public Licence GPLv2+.
41
+
42
+ It is a fork of `SageMath <https://www.sagemath.org/>`__, which has been
43
+ developed 2005-2025 under the motto “Creating a Viable Open Source
44
+ Alternative to Magma, Maple, Mathematica, and MATLAB”.
45
+
46
+ The passagemath fork uses the motto "Creating a Free Passage Between the
47
+ Scientific Python Ecosystem and Mathematical Software Communities."
48
+ It was created in October 2024 with the following goals:
49
+
50
+ - providing modularized installation with pip,
51
+ - establishing first-class membership in the scientific Python
52
+ ecosystem,
53
+ - giving `clear attribution of upstream
54
+ projects <https://groups.google.com/g/sage-devel/c/6HO1HEtL1Fs/m/G002rPGpAAAJ>`__,
55
+ - providing independently usable Python interfaces to upstream
56
+ libraries,
57
+ - offering `platform portability and integration testing
58
+ services <https://github.com/passagemath/passagemath/issues/704>`__
59
+ to upstream projects,
60
+ - inviting collaborations with upstream projects,
61
+ - `building a professional, respectful, inclusive
62
+ community <https://groups.google.com/g/sage-devel/c/xBzaINHWwUQ>`__,
63
+ - `empowering Sage users to participate in the scientific Python ecosystem
64
+ <https://github.com/passagemath/passagemath/issues/248>`__ by publishing packages,
65
+ - developing a port to `Pyodide <https://pyodide.org/en/stable/>`__ for
66
+ serverless deployment with Javascript,
67
+ - developing a native Windows port.
68
+
69
+ `Full documentation <https://passagemath.org/docs/latest/html/en/index.html>`__ is
70
+ available online.
71
+
72
+ passagemath attempts to support and provides binary wheels suitable for
73
+ all major Linux distributions and recent versions of macOS.
74
+
75
+ Binary wheels for native Windows (x86_64) are are available for a subset of
76
+ the passagemath distributions. Use of the full functionality of passagemath
77
+ on Windows currently requires the use of Windows Subsystem for Linux (WSL)
78
+ or virtualization.
79
+
80
+ The supported Python versions in the passagemath 10.6.x series are 3.10.x-3.14.x.
81
+
82
+
83
+ About this pip-installable distribution package
84
+ -----------------------------------------------
85
+
86
+ This pip-installable distribution ``passagemath-gap-pkg-float`` is a
87
+ distribution of the GAP package ``float`` for use with ``passagemath-gap``.
88
+
89
+
90
+ What is included
91
+ ----------------
92
+
93
+ - Wheels on PyPI include the GAP package ``float``
@@ -0,0 +1,46 @@
1
+ passagemath_gap_pkg_float-10.8.1a4.dist-info/RECORD,,
2
+ passagemath_gap_pkg_float-10.8.1a4.dist-info/METADATA.bak,sha256=ML_H8k32K0MIXEh5Ei2S3AW9O7ALVCQac8WnrKGNEUE,4339
3
+ passagemath_gap_pkg_float-10.8.1a4.dist-info/WHEEL,sha256=KWix4FshUAhA4RP96ucZTNOu3DHu77-zZrBYZ9utG7E,155
4
+ passagemath_gap_pkg_float-10.8.1a4.dist-info/top_level.txt,sha256=DpW2ZCoCE3i5w7ShFW2yfE8-obCS4MFQyU-ktHVupFg,31
5
+ passagemath_gap_pkg_float-10.8.1a4.dist-info/METADATA,sha256=8yqBDWnpmihvLJuvQlrGxo7jSjOfCSjd1o6M-P9I6-Q,4267
6
+ gap/pkg/float/libtool,sha256=dqkLfcXcq-8o6Rxe5klwSOrnwU3ZypdFA4zluIk3S7M,359102
7
+ gap/pkg/float/PackageInfo.g,sha256=oVsL57xbTH6EqKHiWRJRaBa_dnTUnu0qfFA83c0Mejc,3559
8
+ gap/pkg/float/config.h.in,sha256=tEjV2QBKwyU296mzX5aqbM-5R56KAzKHHx2QAmxCrk0,2690
9
+ gap/pkg/float/TODO,sha256=xN6kaNta8_jvDI84VKjVhCgkMSfPV_Pn0_9fUiyfrlc,446
10
+ gap/pkg/float/README.md,sha256=1tJCzdPkbLQfZ5ZXqEdZHtKP5iz7ehpLTQDcJ5v9Hus,3063
11
+ gap/pkg/float/COPYING,sha256=MrEGL32oSWfnAZ0Bq4BZNcqnq3Mhp87Q4w6-deXfFnA,17992
12
+ gap/pkg/float/makedoc.g,sha256=xnG9iSST3OjdnCs4vBhv7x5agseU8dulLhW7hM0hUIY,350
13
+ gap/pkg/float/THANKS,sha256=a-CGqtnyZqe2hMjqC-BH8WGgqEmtN6b1c1RW59fN4lA,37
14
+ gap/pkg/float/init.g,sha256=FOd679Lm7KGFl3Mpbcemgs8imvLAc36sJV1iForvXsY,1881
15
+ gap/pkg/float/read.g,sha256=DN7lB09OQXMqJo_SPIwKJz8dCl_zv0IbzMiz8IcIGBk,1388
16
+ gap/pkg/float/build-aux/install-sh,sha256=mVPK4zNuTv_g_7lipSsLSDynPed62UN1J5qSe6GPaoY,15425
17
+ gap/pkg/float/build-aux/config.sub~,sha256=1hF1H7qY6AfJaE0lO7Aqpz1oJf4OC5rjy_JYpZFxybA,35276
18
+ gap/pkg/float/build-aux/ltmain.sh,sha256=MHEuNAHetubVJVxx971X83RCnSIM_BmbofI3arQsLjU,337554
19
+ gap/pkg/float/build-aux/depcomp,sha256=5EtJ9xsmV4gYeZMJACcZOmzStHGPmqe-NEEvU3vOaHM,23568
20
+ gap/pkg/float/build-aux/missing,sha256=qYZdtPOVdP8SjAMSw2fwcNIPgYR4FwIezOlf1wphDJ0,6878
21
+ gap/pkg/float/build-aux/install-sh~,sha256=PXSIvr0M_JtcRAxV1bRPHG4uPT4ZiUghuuSif5MH8dI,15358
22
+ gap/pkg/float/build-aux/compile,sha256=wgezkKrGMjBiuYIhSmxjRI5T5pERB5k6vpbzX-ejChg,7400
23
+ gap/pkg/float/build-aux/config.guess~,sha256=r4oZIsmzwkC_IRnU7AlloLXsNrEBYBe6ZttEs7U-nOo,49348
24
+ gap/pkg/float/bin/x86_64-apple-darwin24-default64-kv10/float.so,sha256=Q2a7T_lXLERQHScbJc1c4i71lHygHTKC6sQMBihC3CU,238064
25
+ gap/pkg/float/lib/fplll.gi,sha256=MmyyCfCDSE4RG0-aGr2NYIgMeVDwwb58s98RBXTEfuc,852
26
+ gap/pkg/float/lib/cxsc.gi,sha256=BjQ0BZvyhCG4gHhGAsRTYBeLWTZE3jTjKWH-6T-V2Ck,21337
27
+ gap/pkg/float/lib/pslq.gi,sha256=Z3s7CmAaYc8QMC7VLFfHK2JeotLs35hWJK76hno3dxo,11820
28
+ gap/pkg/float/lib/mpfi.gi,sha256=IPrjdGzS1aLBtwDPzez48xVDe7C4P0ktPWYnFXBpCjw,9195
29
+ gap/pkg/float/lib/mpfr.gi,sha256=VLMcomzOAwVAG4qsCKwt8ugZkIh9wTY-gl_wPQvRWOg,10419
30
+ gap/pkg/float/lib/pickle.g,sha256=RQOxL0NGC_ufQsI7PO3FdrYliqNQq9djssdQDPvOhJo,3231
31
+ gap/pkg/float/lib/polynomial.gi,sha256=aPs1z8KbMD2f4NotVJszMWTCwcaIFkdiZJTYSA1rMKg,343
32
+ gap/pkg/float/lib/float.gd,sha256=JBEAnTouwj05RfclaOst9EtJY8eYyjOCx9CXuqqWNeM,6487
33
+ gap/pkg/float/lib/mpc.gi,sha256=PQPasSUkAxZGPjTBz93P0r27hxIirJimtf_FQKnhaz0,7867
34
+ gap/pkg/float/tst/fplll.tst,sha256=3akVpZvyCjMZbHbUK_l7mm9_jwm-7uP8Q_S_ia9ispI,666
35
+ gap/pkg/float/tst/testall.g,sha256=lBdrVZWIGfk-hm9OZVX1wMQCSSkSjP8VgeN7w5_Ihjo,1667
36
+ gap/pkg/float/tst/polynomials.tst,sha256=iHgDVM3W6neSpN1kfBpOz8ekGpeVZ3fXJEcnrbYnid8,970
37
+ gap/pkg/float/tst/arithmetic.tst,sha256=GhZsdSTWJxTE6rRFK_eCTkfXAPNGX9M2RRZTS00bHik,755
38
+ passagemath_gap_pkg_float/__init__.py,sha256=VIWMSb8MI1Nj__1BP071yIl4B5r-EbFtlpu9zO-GloY,100
39
+ passagemath_gap_pkg_float/.dylibs/libmpfi.0.dylib,sha256=PuFid2F3m_T6_qqNTOIZO6LU1cOKpVDlgwbGtsBEptA,111648
40
+ passagemath_gap_pkg_float/.dylibs/libfplll.9.dylib,sha256=6V1ZlndQMea9RzG6SzYORYxOVNhc-9kVh6-6THEkMz4,32212328
41
+ passagemath_gap_pkg_float/.dylibs/libmpc.3.dylib,sha256=QmtvPmKHoTxN1VV07_Lb1vUaQ6jV_LekNuzRYaO8ocY,153424
42
+ passagemath_gap_pkg_float/.dylibs/libgmp.10.dylib,sha256=T856JisQzik-cZPRSRzzo3dN7NypkX5h52ElMDF1Xgw,488712
43
+ passagemath_gap_pkg_float/.dylibs/libmpfr.6.dylib,sha256=4SdZkw5icAuL5mPVc8Vs3TgtZxSv00gkfJ5eXzLA9Jo,465224
44
+ sage/all__sagemath_gap_pkg_float.py,sha256=5pGDWGNJCc_KN_gpGwf5jNiT2OmS9x8LOfH_qFTDHQs,52
45
+ sage/libs/all__sagemath_gap_pkg_float.py,sha256=5pGDWGNJCc_KN_gpGwf5jNiT2OmS9x8LOfH_qFTDHQs,52
46
+ sage/libs/gap_pkg_float.cpython-311-darwin.so,sha256=zAFdaNEyaL4x4x-sVSyLNZZB55RU3mptEeUgzz9mekc,22168
@@ -0,0 +1,6 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.10.2)
3
+ Root-Is-Purelib: false
4
+ Tag: cp311-cp311-macosx_13_0_x86_64
5
+ Generator: delocate 0.13.1.dev42+ga0af70b54
6
+
@@ -0,0 +1,2 @@
1
+ passagemath_gap_pkg_float
2
+ sage
@@ -0,0 +1 @@
1
+ # sage_setup: distribution = sagemath-gap-pkg-float
@@ -0,0 +1 @@
1
+ # sage_setup: distribution = sagemath-gap-pkg-float