passagemath-giac 10.5.21__cp313-cp313-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.
@@ -0,0 +1,128 @@
1
+ Metadata-Version: 2.2
2
+ Name: passagemath-giac
3
+ Version: 10.5.21
4
+ Summary: passagemath: Symbolic computation with GIAC
5
+ Author-email: The Sage Developers <sage-support@googlegroups.com>
6
+ Maintainer: Matthias Köppe, passagemath contributors
7
+ License: GNU General Public License (GPL) v2 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://doc.sagemath.org
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: License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
20
+ Classifier: Operating System :: POSIX
21
+ Classifier: Operating System :: MacOS :: MacOS X
22
+ Classifier: Programming Language :: Python :: 3 :: Only
23
+ Classifier: Programming Language :: Python :: 3.9
24
+ Classifier: Programming Language :: Python :: 3.10
25
+ Classifier: Programming Language :: Python :: 3.11
26
+ Classifier: Programming Language :: Python :: 3.12
27
+ Classifier: Programming Language :: Python :: 3.13
28
+ Classifier: Programming Language :: Python :: Implementation :: CPython
29
+ Classifier: Topic :: Scientific/Engineering :: Mathematics
30
+ Requires-Python: <3.14,>=3.9
31
+ Description-Content-Type: text/x-rst
32
+ Requires-Dist: passagemath-categories~=10.5.21.0
33
+ Provides-Extra: test
34
+ Requires-Dist: passagemath-repl; extra == "test"
35
+ Requires-Dist: passagemath-symbolics; extra == "test"
36
+
37
+ ========================================================================
38
+ passagemath: Symbolic computation with Giac
39
+ ========================================================================
40
+
41
+ About SageMath
42
+ --------------
43
+
44
+ "Creating a Viable Open Source Alternative to
45
+ Magma, Maple, Mathematica, and MATLAB"
46
+
47
+ Copyright (C) 2005-2024 The Sage Development Team
48
+
49
+ https://www.sagemath.org
50
+
51
+ SageMath fully supports all major Linux distributions, recent versions of
52
+ macOS, and Windows (Windows Subsystem for Linux).
53
+
54
+ See https://doc.sagemath.org/html/en/installation/index.html
55
+ for general installation instructions.
56
+
57
+
58
+ About this pip-installable distribution package
59
+ -----------------------------------------------
60
+
61
+ `Giac/Xcas <https://www-fourier.ujf-grenoble.fr/~parisse/giac.html>`_
62
+ is a general purpose Computer algebra system by Bernard Parisse released under GPLv3.
63
+ It has been developed since 2000 and is widely used: Giac/Xcas is the native CAS engine
64
+ of the HP Prime calculators; the C++ kernel of the system, Giac, provides the CAS view
65
+ of `Geogebra <https://www.geogebra.org/>`_.
66
+
67
+ This pip-installable source distribution ``passagemath-giac`` makes Giac available
68
+ from Python and provides integration with the Sage Mathematical Software System.
69
+
70
+
71
+ What is included
72
+ ----------------
73
+
74
+ - `Cython interface to GIAC <https://doc.sagemath.org/html/en/reference/libs/sage/libs/giac.html>`_
75
+
76
+ The Cython interface is by Frederic Han and was previously available under the name
77
+ `giacpy-sage <https://gitlab.math.univ-paris-diderot.fr/han/giacpy-sage/>`_.
78
+ It was `merged into the Sage library <https://github.com/sagemath/sage/issues/29171>`_
79
+ in 2020.
80
+
81
+ - `Pexpect interface to GIAC <https://doc.sagemath.org/html/en/reference/interfaces/sage/interfaces/giac.html>`_
82
+
83
+ - see https://github.com/passagemath/passagemath/blob/main/pkgs/sagemath-giac/MANIFEST.in
84
+
85
+ - The binary wheels on PyPI ship a prebuilt copy of the Giac library.
86
+
87
+
88
+ Examples
89
+ --------
90
+
91
+ A quick way to try it out interactively::
92
+
93
+ $ pipx run --pip-args="--prefer-binary" --spec "passagemath-giac[test]" ipython
94
+
95
+ In [1]: from sage.all__sagemath_giac import *
96
+
97
+ In [2]: x = libgiac('x')
98
+
99
+ In [3]: V = [[x[i]**j for i in range(8)] for j in range(8)]
100
+
101
+ In [4]: libgiac(V).dim()
102
+ Out[4]: [8,8]
103
+
104
+ In [5]: libgiac.det_minor(V).factor()
105
+ Out[5]: (x[6]-(x[7]))*(x[5]-(x[7]))*(x[5]-(x[6]))*(x[4]-(x[7]))*(x[4]-(x[6]))*(x[4]-(x[5]))*(x[3]-(x[7]))*(x[3]-(x[6]))*(x[3]-(x[5]))*(x[3]-(x[4]))*(x[2]-(x[7]))*(x[2]-(x[6]))*(x[2]-(x[5]))*(x[2]-(x[4]))*(x[2]-(x[3]))*(x[1]-(x[7]))*(x[1]-(x[6]))*(x[1]-(x[5]))*(x[1]-(x[4]))*(x[1]-(x[3]))*(x[1]-(x[2]))*(x[0]-(x[7]))*(x[0]-(x[6]))*(x[0]-(x[5]))*(x[0]-(x[4]))*(x[0]-(x[3]))*(x[0]-(x[2]))*(x[0]-(x[1]))
106
+
107
+ In [6]: (x+5)**(1/3) # note here 1/3 is done in Python before being sent to Giac
108
+ Out[6]: (x+5)^0.333333333333
109
+
110
+ In [7]: (x+5)**QQ('1/3') # using Sage rationals
111
+ Out[7]: (x+5)^(1/3)
112
+
113
+ In [8]: from fractions import Fraction # using Python rationals
114
+
115
+ In [9]: (x+5)**Fraction(1,3)
116
+ Out[9]: (x+5)^(1/3)
117
+
118
+ The last example again, using the Sage REPL::
119
+
120
+ $ pipx run --pip-args="--prefer-binary" --spec "passagemath-giac[test]" sage
121
+ Warning: sage.all is not available; this is a limited REPL.
122
+
123
+ sage: from sage.all__sagemath_giac import *
124
+
125
+ sage: x = libgiac('x')
126
+
127
+ sage: (x+5)^(1/3) # the Sage preparser translates this to (x+5)**QQ('1/3')
128
+ (x+5)^(1/3)
@@ -0,0 +1,32 @@
1
+ passagemath_giac-10.5.21.dist-info/RECORD,,
2
+ passagemath_giac-10.5.21.dist-info/WHEEL,sha256=9ewbZj4momWTX7LRPab0qEhVweQWQdGnkB-qeEM-kWM,110
3
+ passagemath_giac-10.5.21.dist-info/top_level.txt,sha256=Kmzulf9WsphADFQuqgvdy5mvTLDj_V2zkFHU2s3UXos,6
4
+ passagemath_giac-10.5.21.dist-info/METADATA,sha256=MUudhzBe8N5IsJ-DTt1H6d8m8FscPto6HHJHLzrxlPc,5245
5
+ passagemath_giac.dylibs/libreadline.8.2.dylib,sha256=zVGpnCDX46fcR2Wu8Xw6Ox9Pqgw1Ou16-nY5Qr-2YK4,296192
6
+ passagemath_giac.dylibs/libcliquer.1.dylib,sha256=x96NlowphT9WtRnKaAsvFegLBVVC1XXPoRW1CrhvpE4,122496
7
+ passagemath_giac.dylibs/libgsl.28.dylib,sha256=74EaCsI39dcdUDLCswHZchyZCwj0D8p17M0QTr7p9oo,3265072
8
+ passagemath_giac.dylibs/libmpfi.0.dylib,sha256=rhXfk1Bye_Lb4vGlO1tHdBvRW_qB5VNsKw4a_LuViu4,167968
9
+ passagemath_giac.dylibs/libglpk.40.dylib,sha256=3hKVNnq-qlptB8cml-RvNr0ISFMmC3CYQgmhsDwtOv0,1189344
10
+ passagemath_giac.dylibs/libgiac.0.dylib,sha256=PX7N8PFeSOGvpA75eXV0De3yHaxPsx0iVAC3xGmO_RE,27970304
11
+ passagemath_giac.dylibs/libopenblas_sandybridgep-r0.3.28.dylib,sha256=aNzmvaq62Qa7hdndwDqgY7mUvCPKraWDEij6cDFYqoQ,15444912
12
+ passagemath_giac.dylibs/libusb-1.0.0.dylib,sha256=PEyTBWLSmL_snvlCx1UOCYqnU35szUeNgj73ktLCBKQ,178576
13
+ passagemath_giac.dylibs/libgfortran.5.dylib,sha256=ELwy_YDxrPB25hJPxuWxpiXUc0drXWM5JPEwpyBUp2Y,3675456
14
+ passagemath_giac.dylibs/libintl.8.dylib,sha256=ag-faUT5P099SR5VQAIU0yrTPCBtXORRI1d_q_LIfVk,161904
15
+ passagemath_giac.dylibs/libpari-gmp-tls.dylib,sha256=G4H2kH3V_ExdRhu0_UbJZiTAv7CcPejuBkoWzQAaBpM,10661936
16
+ passagemath_giac.dylibs/libquadmath.0.dylib,sha256=jM6iJSw498ZnG7UyDTi3NUVcKZ2vxmsI1ZzpwiKTsjk,379152
17
+ passagemath_giac.dylibs/libgcc_s.1.1.dylib,sha256=3hzL52eA1i-ercULcWhTNIbVADS-NO_4DyTKA5Amzgw,282640
18
+ passagemath_giac.dylibs/libgslcblas.0.dylib,sha256=Zivns278SV3Z-ShFmyU0Ez7D1ZnQECKXFxQtdSebpdk,371872
19
+ passagemath_giac.dylibs/libgmp.10.dylib,sha256=ZNqVSLKQlp4czERp2sy5JEuFGUFUBpv0nGxnkVyZ9N0,580928
20
+ passagemath_giac.dylibs/libmpfr.6.dylib,sha256=DJT32U1FTQ_9Yuehjlw1Eh4bLbwD2TlOHpHTA4KV0yo,515744
21
+ sage_wheels/bin/giac,sha256=YAfZ_lIGohW3uGwSj7hJjSj35Q6974waDzbjHBLcDcM,313056
22
+ sage/all__sagemath_giac.py,sha256=BXuEI2KgK8sqcL2WLl-U8g3GhMYOoJ6ppSNb03pvuBk,214
23
+ sage/libs/all__sagemath_giac.py,sha256=Ki9seZYz9nDXkjkzVTLXVAIqJdBc09sUzpK9Va8vWkM,154
24
+ sage/libs/giac/giac.pxd,sha256=u5TF3tAucvOa5ypyZyAeB8lLe_dRT1YAxCKEmOxdkng,8238
25
+ sage/libs/giac/giac.cpython-313-darwin.so,sha256=I3HOUgRnUr9K6wBETKWR2r9IbLimU6XZzyLAix6OSuY,3294944
26
+ sage/libs/giac/misc.h,sha256=gDMJlwTFblzrfnWaoPGgxC1oQas03BP22ecBa5d-JJA,2548
27
+ sage/libs/giac/keywords.pxi,sha256=y_L_dsEE3lIopMt8fsbOhGN8b3iueAwT5Y7BSSUs3O0,25732
28
+ sage/libs/giac/__init__.py,sha256=pQcVLi-O_WRtie1aN8ge1U-lYTPRC502AJ2l585xM3k,12908
29
+ sage/libs/giac/auto-methods.pxi,sha256=Oh58oDqlbKWeFXY6ArLMROm5iTayfaZZuVAbdWj1ZhI,676345
30
+ sage/libs/giac/giac.pyx,sha256=CuwKJe1xP5hwgZ__0jWofwEI7KHnmxoNmswnO7jOqyU,68830
31
+ sage/interfaces/all__sagemath_giac.py,sha256=kb8e_2ZD2q6tVPakBcnb9ocdKdeowDDYmWkBdNfsp2w,43
32
+ sage/interfaces/giac.py,sha256=EDIv4z_4jCkhgjld2cspLXV9ACg0AIc_Xokm55uJbx4,38219
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (75.8.0)
3
+ Root-Is-Purelib: false
4
+ Tag: cp313-cp313-macosx_13_0_x86_64
5
+
@@ -0,0 +1,2 @@
1
+
2
+ sage
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1,10 @@
1
+ # sage_setup: distribution = sagemath-giac
2
+
3
+ from sage.all__sagemath_categories import *
4
+
5
+ try:
6
+ from sage.all__sagemath_symbolics import *
7
+ except ImportError:
8
+ pass
9
+
10
+ from sage.libs.all__sagemath_giac import *
@@ -0,0 +1 @@
1
+ # sage_setup: distribution = sagemath-giac