passagemath-kissat 10.6.45__cp311-cp311-musllinux_1_2_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,3 @@
1
+ # sage_setup: distribution = sagemath-kissat
2
+
3
+ from sage.all__sagemath_kissat import *
@@ -0,0 +1,126 @@
1
+ Metadata-Version: 2.4
2
+ Name: passagemath-kissat
3
+ Version: 10.6.45
4
+ Summary: passagemath: Interface to the SAT solver kissat
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
+ Provides-Extra: test
33
+ Requires-Dist: passagemath-combinat; extra == "test"
34
+ Requires-Dist: passagemath-repl; extra == "test"
35
+
36
+ ===============================================================================
37
+ passagemath: Interface to the SAT solver kissat
38
+ ===============================================================================
39
+
40
+ `passagemath <https://github.com/passagemath/passagemath>`__ is open
41
+ source mathematical software in Python, released under the GNU General
42
+ Public Licence GPLv2+.
43
+
44
+ It is a fork of `SageMath <https://www.sagemath.org/>`__, which has been
45
+ developed 2005-2025 under the motto “Creating a Viable Open Source
46
+ Alternative to Magma, Maple, Mathematica, and MATLAB”.
47
+
48
+ The passagemath fork uses the motto "Creating a Free Passage Between the
49
+ Scientific Python Ecosystem and Mathematical Software Communities."
50
+ It was created in October 2024 with the following goals:
51
+
52
+ - providing modularized installation with pip,
53
+ - establishing first-class membership in the scientific Python
54
+ ecosystem,
55
+ - giving `clear attribution of upstream
56
+ projects <https://groups.google.com/g/sage-devel/c/6HO1HEtL1Fs/m/G002rPGpAAAJ>`__,
57
+ - providing independently usable Python interfaces to upstream
58
+ libraries,
59
+ - offering `platform portability and integration testing
60
+ services <https://github.com/passagemath/passagemath/issues/704>`__
61
+ to upstream projects,
62
+ - inviting collaborations with upstream projects,
63
+ - `building a professional, respectful, inclusive
64
+ community <https://groups.google.com/g/sage-devel/c/xBzaINHWwUQ>`__,
65
+ - `empowering Sage users to participate in the scientific Python ecosystem
66
+ <https://github.com/passagemath/passagemath/issues/248>`__ by publishing packages,
67
+ - developing a port to `Pyodide <https://pyodide.org/en/stable/>`__ for
68
+ serverless deployment with Javascript,
69
+ - developing a native Windows port.
70
+
71
+ `Full documentation <https://passagemath.org/docs/latest/html/en/index.html>`__ is
72
+ available online.
73
+
74
+ passagemath attempts to support and provides binary wheels suitable for
75
+ all major Linux distributions and recent versions of macOS.
76
+
77
+ Binary wheels for native Windows (x86_64) are are available for a subset of
78
+ the passagemath distributions. Use of the full functionality of passagemath
79
+ on Windows currently requires the use of Windows Subsystem for Linux (WSL)
80
+ or virtualization.
81
+
82
+ The supported Python versions in the passagemath 10.6.x series are 3.10.x-3.14.x.
83
+
84
+
85
+ About this pip-installable distribution package
86
+ -----------------------------------------------
87
+
88
+ This pip-installable distribution ``passagemath-kissat`` provides an interface
89
+ to the SAT solver `kissat <https://fmv.jku.at/kissat/>`_, a condensed and improved
90
+ reimplementation of CaDiCaL in C.
91
+
92
+
93
+ What is included
94
+ ----------------
95
+
96
+ * Binary wheels on PyPI contain prebuilt copies of the kissat executable.
97
+
98
+
99
+ Examples
100
+ --------
101
+
102
+ Using kissat programs on the command line::
103
+
104
+ $ pipx run --pip-args="--prefer-binary" --spec "passagemath-kissat" sage -sh -c kissat
105
+
106
+ Finding the installation location of the kissat program::
107
+
108
+ $ pipx run --pip-args="--prefer-binary" --spec "passagemath-kissat[test]" ipython
109
+
110
+ In [1]: from sage.features.sat import Kissat
111
+
112
+ In [2]: Kissat().absolute_filename()
113
+ Out[2]: '.../bin/kissat'
114
+
115
+ Use with `sage.sat <https://passagemath.org/docs/latest/html/en/reference/sat/index.html>`_::
116
+
117
+ $ pipx run --pip-args="--prefer-binary" --spec "passagemath-kissat[test]" ipython
118
+
119
+ In [1]: from passagemath_kissat import *
120
+
121
+ In [2]: from sage.sat.solvers.dimacs import Kissat
122
+
123
+ In [3]: solver = Kissat(); solver.add_clause((1,2)); solver.add_clause((-1,2)); solver.add_clause((1,-2))
124
+
125
+ In [4]: solver()
126
+ Out[4]: (None, True, True)
@@ -0,0 +1,10 @@
1
+ passagemath_kissat/__init__.py,sha256=rWFlu2ZzmZRRh6cDuq1Kl8grs-O64-BL8hYIz6JHrw4,86
2
+ sage/all__sagemath_kissat.py,sha256=RbQRrU-MyZPCN39vkKVFTy3xzvn3H5nsu64AazxpOT0,108
3
+ sage/libs/all__sagemath_kissat.py,sha256=uHL2QhjQUTkNtAtaBgkPoLs62E9qhmnX1aNz-rv8pJs,45
4
+ sage/libs/kissat.cpython-311-x86_64-linux-musl.so,sha256=2wTqm4-y5L4oMElXZCMe2FCJym8fXOERMzwkJmZRFQ8,52024
5
+ sage/libs/kissat.pyx,sha256=uHL2QhjQUTkNtAtaBgkPoLs62E9qhmnX1aNz-rv8pJs,45
6
+ sage_wheels/bin/kissat,sha256=eCop2GKJrYhMHEghsFt5i3dNHBne0zrbUfyBQCOX9qM,535296
7
+ passagemath_kissat-10.6.45.dist-info/METADATA,sha256=wNHFRPH_atoK3fm4vg-XAENniW9ByYbjB6UpRJ2X9P4,5304
8
+ passagemath_kissat-10.6.45.dist-info/WHEEL,sha256=kA_iIvT-cxTFNl4I8QDfFHN1DAyqZDYakVXCaObxeLo,112
9
+ passagemath_kissat-10.6.45.dist-info/top_level.txt,sha256=nLgNA6FwaWfX8JKVFhn7KTcurVXTGxhKO1zEb0hnedQ,25
10
+ passagemath_kissat-10.6.45.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: false
4
+ Tag: cp311-cp311-musllinux_1_2_x86_64
5
+
@@ -0,0 +1,3 @@
1
+
2
+ passagemath_kissat
3
+ sage
@@ -0,0 +1,4 @@
1
+ # sage_setup: distribution = sagemath-kissat
2
+ # delvewheel: patch
3
+
4
+ from sage.all__sagemath_combinat import *
@@ -0,0 +1 @@
1
+ # sage_setup: distribution = sagemath-kissat
sage/libs/kissat.pyx ADDED
@@ -0,0 +1 @@
1
+ # sage_setup: distribution = sagemath-kissat
sage_wheels/bin/kissat ADDED
Binary file