passagemath-giac 10.5.21__cp313-cp313-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.
- passagemath_giac-10.5.21.dist-info/METADATA +128 -0
- passagemath_giac-10.5.21.dist-info/RECORD +34 -0
- passagemath_giac-10.5.21.dist-info/WHEEL +5 -0
- passagemath_giac-10.5.21.dist-info/top_level.txt +2 -0
- passagemath_giac.libs/libcliquer-a69af74b.so.1.0.21 +0 -0
- passagemath_giac.libs/libcrypto-bdaed0ea.so.1.1.1k +0 -0
- passagemath_giac.libs/libcurl-9981823a.so.4.8.0 +0 -0
- passagemath_giac.libs/libgfortran-93980b03.so.5.0.0 +0 -0
- passagemath_giac.libs/libgiac-fb397c3d.so.0.0.0 +0 -0
- passagemath_giac.libs/libglpk-c7d59de2.so.40.3.1 +0 -0
- passagemath_giac.libs/libgmp-6a0631b7.so.10.5.0 +0 -0
- passagemath_giac.libs/libgsl-292c5b84.so.28.0.0 +0 -0
- passagemath_giac.libs/libgslcblas-0156d039.so.0.0.0 +0 -0
- passagemath_giac.libs/libmpfi-b4ccb1ec.so.0.0.0 +0 -0
- passagemath_giac.libs/libmpfr-eab58d30.so.6.2.1 +0 -0
- passagemath_giac.libs/libncurses-38c2e1a3.so.6.1 +0 -0
- passagemath_giac.libs/libopenblas_zenp-r0-827ea828.3.28.so +0 -0
- passagemath_giac.libs/libpari-gmp-tls-a7c8656f.so.2.15.5 +0 -0
- passagemath_giac.libs/libquadmath-776d53b6.so.0.0.0 +0 -0
- passagemath_giac.libs/libreadline-69c5979f.so.7.0 +0 -0
- passagemath_giac.libs/libssl-60250281.so.1.1.1k +0 -0
- passagemath_giac.libs/libtinfo-3a2cb85b.so.6.1 +0 -0
- sage/all__sagemath_giac.py +10 -0
- sage/interfaces/all__sagemath_giac.py +1 -0
- sage/interfaces/giac.py +1264 -0
- sage/libs/all__sagemath_giac.py +7 -0
- sage/libs/giac/__init__.py +356 -0
- sage/libs/giac/auto-methods.pxi +16982 -0
- sage/libs/giac/giac.cpython-313-x86_64-linux-gnu.so +0 -0
- sage/libs/giac/giac.pxd +205 -0
- sage/libs/giac/giac.pyx +2074 -0
- sage/libs/giac/keywords.pxi +10 -0
- sage/libs/giac/misc.h +117 -0
- sage_wheels/bin/giac +0 -0
@@ -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,34 @@
|
|
1
|
+
passagemath_giac.libs/libcliquer-a69af74b.so.1.0.21,sha256=3IhEyTqscnGQl_To_ij3NHTZYER00zSOA79ilXsXhCo,186017
|
2
|
+
passagemath_giac.libs/libcrypto-bdaed0ea.so.1.1.1k,sha256=teTU1EbwIqcxLKEwQCCxVDDLNnMUyvbgJRzPb37I3uo,3215921
|
3
|
+
passagemath_giac.libs/libcurl-9981823a.so.4.8.0,sha256=BqSGyL0gKeKfaf9eh7VZsTTHVcel5zZTdBGxDP_Rv2M,4126993
|
4
|
+
passagemath_giac.libs/libgfortran-93980b03.so.5.0.0,sha256=VRPmUjgQd_BY9MZtJxiNd9ToNjdBD8kmV1-G0G2SSKU,2714697
|
5
|
+
passagemath_giac.libs/libgiac-fb397c3d.so.0.0.0,sha256=GdbF8PRq0gmNjnhgvNHXp5qmXURNtLG08IA5oAE8_4M,235844273
|
6
|
+
passagemath_giac.libs/libglpk-c7d59de2.so.40.3.1,sha256=W5u7Xc9j5T4bBleYl35Z1JWLiLfBX_kV1XvmaE2RE_U,4170201
|
7
|
+
passagemath_giac.libs/libgmp-6a0631b7.so.10.5.0,sha256=2FFQ4HKHUxHZsrj5UQucSJ7bTc-1TrVWUk6N6LwyFqg,568553
|
8
|
+
passagemath_giac.libs/libgsl-292c5b84.so.28.0.0,sha256=P8BCBwY8HplghNYntb6iG6wE4So_phMs9r2TvyJ2vOo,3838297
|
9
|
+
passagemath_giac.libs/libgslcblas-0156d039.so.0.0.0,sha256=8sbArzNByDuwjo_eK74HSgpShPGfesQkzc6I7T_ki5Y,288761
|
10
|
+
passagemath_giac.libs/libmpfi-b4ccb1ec.so.0.0.0,sha256=6hXWVZze6fqlTjZCD5ZkRGl87HGXFQcX6PayG49HAvY,520377
|
11
|
+
passagemath_giac.libs/libmpfr-eab58d30.so.6.2.1,sha256=7_lJKtebx0byaRqBgW_AgT0u6uVlIwPoHjddjgGZhbg,807417
|
12
|
+
passagemath_giac.libs/libncurses-38c2e1a3.so.6.1,sha256=6OGclyOJXMzEhdHyry_UqgdB6YHiVNRbyq1EBta3gYY,201865
|
13
|
+
passagemath_giac.libs/libopenblas_zenp-r0-827ea828.3.28.so,sha256=ZRjUp5rC-wzRzB_5niNmi6CEgDpX6YtpC_ps3aqaMis,14922265
|
14
|
+
passagemath_giac.libs/libpari-gmp-tls-a7c8656f.so.2.15.5,sha256=EEpxBr3xXt33t1ngeepYSXdueaPVWwGLyhnZs9ejjck,11386697
|
15
|
+
passagemath_giac.libs/libquadmath-776d53b6.so.0.0.0,sha256=3FY9LfNiF_4qtQ_ZZncl3g5v7__d2mmyG-o2kSRS-8Q,272193
|
16
|
+
passagemath_giac.libs/libreadline-69c5979f.so.7.0,sha256=n78LylYwyyZqDnQT-gXwRXlAYhk1oK0_GAFMbemwQbo,374465
|
17
|
+
passagemath_giac.libs/libssl-60250281.so.1.1.1k,sha256=MCNuTI3K8vc-l_BvN5nElqPps2xW3COe2EZnuxtfQrE,666865
|
18
|
+
passagemath_giac.libs/libtinfo-3a2cb85b.so.6.1,sha256=6Co83bxdB4J-rBU5l0p_7HpGlU46RG2EDnf-LpF5kBY,194041
|
19
|
+
sage/all__sagemath_giac.py,sha256=BXuEI2KgK8sqcL2WLl-U8g3GhMYOoJ6ppSNb03pvuBk,214
|
20
|
+
sage/interfaces/all__sagemath_giac.py,sha256=kb8e_2ZD2q6tVPakBcnb9ocdKdeowDDYmWkBdNfsp2w,43
|
21
|
+
sage/interfaces/giac.py,sha256=EDIv4z_4jCkhgjld2cspLXV9ACg0AIc_Xokm55uJbx4,38219
|
22
|
+
sage/libs/all__sagemath_giac.py,sha256=Ki9seZYz9nDXkjkzVTLXVAIqJdBc09sUzpK9Va8vWkM,154
|
23
|
+
sage/libs/giac/__init__.py,sha256=pQcVLi-O_WRtie1aN8ge1U-lYTPRC502AJ2l585xM3k,12908
|
24
|
+
sage/libs/giac/auto-methods.pxi,sha256=Oh58oDqlbKWeFXY6ArLMROm5iTayfaZZuVAbdWj1ZhI,676345
|
25
|
+
sage/libs/giac/giac.cpython-313-x86_64-linux-gnu.so,sha256=4xoqhf_eDMuhNo96bekdVAi0k0TjkMytz3EXbEnJVK4,21201577
|
26
|
+
sage/libs/giac/giac.pxd,sha256=u5TF3tAucvOa5ypyZyAeB8lLe_dRT1YAxCKEmOxdkng,8238
|
27
|
+
sage/libs/giac/giac.pyx,sha256=CuwKJe1xP5hwgZ__0jWofwEI7KHnmxoNmswnO7jOqyU,68830
|
28
|
+
sage/libs/giac/keywords.pxi,sha256=y_L_dsEE3lIopMt8fsbOhGN8b3iueAwT5Y7BSSUs3O0,25732
|
29
|
+
sage/libs/giac/misc.h,sha256=gDMJlwTFblzrfnWaoPGgxC1oQas03BP22ecBa5d-JJA,2548
|
30
|
+
sage_wheels/bin/giac,sha256=gum3WeC2VdBR8tA6jie0lC1UxpAEfiofmE27-swTawg,4033944
|
31
|
+
passagemath_giac-10.5.21.dist-info/METADATA,sha256=MUudhzBe8N5IsJ-DTt1H6d8m8FscPto6HHJHLzrxlPc,5245
|
32
|
+
passagemath_giac-10.5.21.dist-info/WHEEL,sha256=kWoXVR4I3To8XPPCqa1SkE_Ch3NX6sA2HMthXGEhSws,113
|
33
|
+
passagemath_giac-10.5.21.dist-info/top_level.txt,sha256=Kmzulf9WsphADFQuqgvdy5mvTLDj_V2zkFHU2s3UXos,6
|
34
|
+
passagemath_giac-10.5.21.dist-info/RECORD,,
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1 @@
|
|
1
|
+
# sage_setup: distribution = sagemath-giac
|