passagemath-coxeter3 10.4.1__tar.gz
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-coxeter3 might be problematic. Click here for more details.
- passagemath_coxeter3-10.4.1/MANIFEST.in +20 -0
- passagemath_coxeter3-10.4.1/PKG-INFO +56 -0
- passagemath_coxeter3-10.4.1/README.rst +28 -0
- passagemath_coxeter3-10.4.1/VERSION.txt +1 -0
- passagemath_coxeter3-10.4.1/passagemath_coxeter3.egg-info/PKG-INFO +56 -0
- passagemath_coxeter3-10.4.1/passagemath_coxeter3.egg-info/SOURCES.txt +19 -0
- passagemath_coxeter3-10.4.1/passagemath_coxeter3.egg-info/dependency_links.txt +1 -0
- passagemath_coxeter3-10.4.1/passagemath_coxeter3.egg-info/top_level.txt +1 -0
- passagemath_coxeter3-10.4.1/pyproject.toml +62 -0
- passagemath_coxeter3-10.4.1/pyproject.toml.m4 +37 -0
- passagemath_coxeter3-10.4.1/requirements.txt.m4 +2 -0
- passagemath_coxeter3-10.4.1/sage/all__sagemath_coxeter3.py +1 -0
- passagemath_coxeter3-10.4.1/sage/libs/all__sagemath_coxeter3.py +1 -0
- passagemath_coxeter3-10.4.1/sage/libs/coxeter3/__init__.py +1 -0
- passagemath_coxeter3-10.4.1/sage/libs/coxeter3/all__sagemath_coxeter3.py +1 -0
- passagemath_coxeter3-10.4.1/sage/libs/coxeter3/coxeter.pxd +31 -0
- passagemath_coxeter3-10.4.1/sage/libs/coxeter3/coxeter.pyx +1222 -0
- passagemath_coxeter3-10.4.1/sage/libs/coxeter3/coxeter_group.py +716 -0
- passagemath_coxeter3-10.4.1/sage/libs/coxeter3/decl.pxd +166 -0
- passagemath_coxeter3-10.4.1/setup.cfg +4 -0
- passagemath_coxeter3-10.4.1/setup.py +65 -0
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
prune sage
|
|
2
|
+
|
|
3
|
+
include VERSION.txt
|
|
4
|
+
|
|
5
|
+
graft sage/libs/coxeter3
|
|
6
|
+
|
|
7
|
+
global-exclude *.c
|
|
8
|
+
global-exclude *.cpp
|
|
9
|
+
|
|
10
|
+
global-exclude all__sagemath_*.*
|
|
11
|
+
global-include all__sagemath_coxeter3.py
|
|
12
|
+
|
|
13
|
+
global-exclude __pycache__
|
|
14
|
+
global-exclude *.py[co]
|
|
15
|
+
global-exclude *.bak
|
|
16
|
+
global-exclude *.so
|
|
17
|
+
global-exclude *~
|
|
18
|
+
prune .tox
|
|
19
|
+
prune build
|
|
20
|
+
prune dist
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: passagemath-coxeter3
|
|
3
|
+
Version: 10.4.1
|
|
4
|
+
Summary: passagemath: Coxeter groups, Bruhat ordering, Kazhdan-Lusztig polynomials with coxeter3
|
|
5
|
+
Author-email: The Sage Developers <sage-support@googlegroups.com>
|
|
6
|
+
License: GNU General Public License (GPL) v2 or later
|
|
7
|
+
Project-URL: download, https://doc.sagemath.org/html/en/installation/index.html
|
|
8
|
+
Project-URL: release notes, https://github.com/sagemath/sage/releases
|
|
9
|
+
Project-URL: source, https://github.com/sagemath/sage
|
|
10
|
+
Project-URL: documentation, https://doc.sagemath.org
|
|
11
|
+
Project-URL: homepage, https://www.sagemath.org
|
|
12
|
+
Project-URL: tracker, https://github.com/sagemath/sage/issues
|
|
13
|
+
Classifier: Development Status :: 6 - Mature
|
|
14
|
+
Classifier: Intended Audience :: Education
|
|
15
|
+
Classifier: Intended Audience :: Science/Research
|
|
16
|
+
Classifier: License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
|
|
17
|
+
Classifier: Operating System :: POSIX
|
|
18
|
+
Classifier: Operating System :: MacOS :: MacOS X
|
|
19
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
24
|
+
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
25
|
+
Classifier: Topic :: Scientific/Engineering :: Mathematics
|
|
26
|
+
Requires-Python: <3.13,>=3.9
|
|
27
|
+
Description-Content-Type: text/x-rst
|
|
28
|
+
|
|
29
|
+
====================================================================================================================
|
|
30
|
+
passagemath: Coxeter groups, Bruhat ordering, Kazhdan-Lusztig polynomials with coxeter3
|
|
31
|
+
====================================================================================================================
|
|
32
|
+
|
|
33
|
+
About SageMath
|
|
34
|
+
--------------
|
|
35
|
+
|
|
36
|
+
"Creating a Viable Open Source Alternative to
|
|
37
|
+
Magma, Maple, Mathematica, and MATLAB"
|
|
38
|
+
|
|
39
|
+
Copyright (C) 2005-2024 The Sage Development Team
|
|
40
|
+
|
|
41
|
+
https://www.sagemath.org
|
|
42
|
+
|
|
43
|
+
SageMath fully supports all major Linux distributions, recent versions of
|
|
44
|
+
macOS, and Windows (Windows Subsystem for Linux).
|
|
45
|
+
|
|
46
|
+
See https://doc.sagemath.org/html/en/installation/index.html
|
|
47
|
+
for general installation instructions.
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
About this pip-installable source distribution
|
|
51
|
+
----------------------------------------------
|
|
52
|
+
|
|
53
|
+
This pip-installable source distribution ``sagemath-coxeter3`` is a small
|
|
54
|
+
optional distribution for use with ``sagemath-standard``.
|
|
55
|
+
|
|
56
|
+
It provides a Cython interface to the ``coxeter3`` library.
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
====================================================================================================================
|
|
2
|
+
passagemath: Coxeter groups, Bruhat ordering, Kazhdan-Lusztig polynomials with coxeter3
|
|
3
|
+
====================================================================================================================
|
|
4
|
+
|
|
5
|
+
About SageMath
|
|
6
|
+
--------------
|
|
7
|
+
|
|
8
|
+
"Creating a Viable Open Source Alternative to
|
|
9
|
+
Magma, Maple, Mathematica, and MATLAB"
|
|
10
|
+
|
|
11
|
+
Copyright (C) 2005-2024 The Sage Development Team
|
|
12
|
+
|
|
13
|
+
https://www.sagemath.org
|
|
14
|
+
|
|
15
|
+
SageMath fully supports all major Linux distributions, recent versions of
|
|
16
|
+
macOS, and Windows (Windows Subsystem for Linux).
|
|
17
|
+
|
|
18
|
+
See https://doc.sagemath.org/html/en/installation/index.html
|
|
19
|
+
for general installation instructions.
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
About this pip-installable source distribution
|
|
23
|
+
----------------------------------------------
|
|
24
|
+
|
|
25
|
+
This pip-installable source distribution ``sagemath-coxeter3`` is a small
|
|
26
|
+
optional distribution for use with ``sagemath-standard``.
|
|
27
|
+
|
|
28
|
+
It provides a Cython interface to the ``coxeter3`` library.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
10.4.1
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: passagemath-coxeter3
|
|
3
|
+
Version: 10.4.1
|
|
4
|
+
Summary: passagemath: Coxeter groups, Bruhat ordering, Kazhdan-Lusztig polynomials with coxeter3
|
|
5
|
+
Author-email: The Sage Developers <sage-support@googlegroups.com>
|
|
6
|
+
License: GNU General Public License (GPL) v2 or later
|
|
7
|
+
Project-URL: download, https://doc.sagemath.org/html/en/installation/index.html
|
|
8
|
+
Project-URL: release notes, https://github.com/sagemath/sage/releases
|
|
9
|
+
Project-URL: source, https://github.com/sagemath/sage
|
|
10
|
+
Project-URL: documentation, https://doc.sagemath.org
|
|
11
|
+
Project-URL: homepage, https://www.sagemath.org
|
|
12
|
+
Project-URL: tracker, https://github.com/sagemath/sage/issues
|
|
13
|
+
Classifier: Development Status :: 6 - Mature
|
|
14
|
+
Classifier: Intended Audience :: Education
|
|
15
|
+
Classifier: Intended Audience :: Science/Research
|
|
16
|
+
Classifier: License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
|
|
17
|
+
Classifier: Operating System :: POSIX
|
|
18
|
+
Classifier: Operating System :: MacOS :: MacOS X
|
|
19
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
24
|
+
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
25
|
+
Classifier: Topic :: Scientific/Engineering :: Mathematics
|
|
26
|
+
Requires-Python: <3.13,>=3.9
|
|
27
|
+
Description-Content-Type: text/x-rst
|
|
28
|
+
|
|
29
|
+
====================================================================================================================
|
|
30
|
+
passagemath: Coxeter groups, Bruhat ordering, Kazhdan-Lusztig polynomials with coxeter3
|
|
31
|
+
====================================================================================================================
|
|
32
|
+
|
|
33
|
+
About SageMath
|
|
34
|
+
--------------
|
|
35
|
+
|
|
36
|
+
"Creating a Viable Open Source Alternative to
|
|
37
|
+
Magma, Maple, Mathematica, and MATLAB"
|
|
38
|
+
|
|
39
|
+
Copyright (C) 2005-2024 The Sage Development Team
|
|
40
|
+
|
|
41
|
+
https://www.sagemath.org
|
|
42
|
+
|
|
43
|
+
SageMath fully supports all major Linux distributions, recent versions of
|
|
44
|
+
macOS, and Windows (Windows Subsystem for Linux).
|
|
45
|
+
|
|
46
|
+
See https://doc.sagemath.org/html/en/installation/index.html
|
|
47
|
+
for general installation instructions.
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
About this pip-installable source distribution
|
|
51
|
+
----------------------------------------------
|
|
52
|
+
|
|
53
|
+
This pip-installable source distribution ``sagemath-coxeter3`` is a small
|
|
54
|
+
optional distribution for use with ``sagemath-standard``.
|
|
55
|
+
|
|
56
|
+
It provides a Cython interface to the ``coxeter3`` library.
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
MANIFEST.in
|
|
2
|
+
README.rst
|
|
3
|
+
VERSION.txt
|
|
4
|
+
pyproject.toml
|
|
5
|
+
pyproject.toml.m4
|
|
6
|
+
requirements.txt.m4
|
|
7
|
+
setup.py
|
|
8
|
+
passagemath_coxeter3.egg-info/PKG-INFO
|
|
9
|
+
passagemath_coxeter3.egg-info/SOURCES.txt
|
|
10
|
+
passagemath_coxeter3.egg-info/dependency_links.txt
|
|
11
|
+
passagemath_coxeter3.egg-info/top_level.txt
|
|
12
|
+
sage/all__sagemath_coxeter3.py
|
|
13
|
+
sage/libs/all__sagemath_coxeter3.py
|
|
14
|
+
sage/libs/coxeter3/__init__.py
|
|
15
|
+
sage/libs/coxeter3/all__sagemath_coxeter3.py
|
|
16
|
+
sage/libs/coxeter3/coxeter.pxd
|
|
17
|
+
sage/libs/coxeter3/coxeter.pyx
|
|
18
|
+
sage/libs/coxeter3/coxeter_group.py
|
|
19
|
+
sage/libs/coxeter3/decl.pxd
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
sage
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
# Generated by SAGE_ROOT/bootstrap; do not edit
|
|
2
|
+
[build-system]
|
|
3
|
+
# Minimum requirements for the build system to execute.
|
|
4
|
+
requires = [
|
|
5
|
+
'setuptools >= 68.1.1',
|
|
6
|
+
'passagemath-setup ~= 10.4.1',
|
|
7
|
+
'passagemath-environment ~= 10.4.1',
|
|
8
|
+
'passagemath-objects ~= 10.4.1',
|
|
9
|
+
'cython >=3.0, != 3.0.3, <4.0',
|
|
10
|
+
'cysignals >=1.10.2',
|
|
11
|
+
'pkgconfig',
|
|
12
|
+
]
|
|
13
|
+
build-backend = "setuptools.build_meta"
|
|
14
|
+
|
|
15
|
+
[project]
|
|
16
|
+
name = "passagemath-coxeter3"
|
|
17
|
+
description = "passagemath: Coxeter groups, Bruhat ordering, Kazhdan-Lusztig polynomials with coxeter3"
|
|
18
|
+
dependencies = []
|
|
19
|
+
dynamic = ["version"]
|
|
20
|
+
license = {text = "GNU General Public License (GPL) v2 or later"}
|
|
21
|
+
authors = [{name = "The Sage Developers", email = "sage-support@googlegroups.com"}]
|
|
22
|
+
classifiers = [
|
|
23
|
+
"Development Status :: 6 - Mature",
|
|
24
|
+
"Intended Audience :: Education",
|
|
25
|
+
"Intended Audience :: Science/Research",
|
|
26
|
+
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
|
|
27
|
+
"Operating System :: POSIX",
|
|
28
|
+
"Operating System :: MacOS :: MacOS X",
|
|
29
|
+
"Programming Language :: Python :: 3 :: Only",
|
|
30
|
+
"Programming Language :: Python :: 3.9",
|
|
31
|
+
"Programming Language :: Python :: 3.10",
|
|
32
|
+
"Programming Language :: Python :: 3.11",
|
|
33
|
+
"Programming Language :: Python :: 3.12",
|
|
34
|
+
"Programming Language :: Python :: Implementation :: CPython",
|
|
35
|
+
"Topic :: Scientific/Engineering :: Mathematics",
|
|
36
|
+
]
|
|
37
|
+
requires-python = ">=3.9, <3.13"
|
|
38
|
+
|
|
39
|
+
[project.urls]
|
|
40
|
+
download = "https://doc.sagemath.org/html/en/installation/index.html"
|
|
41
|
+
"release notes" = "https://github.com/sagemath/sage/releases"
|
|
42
|
+
source = "https://github.com/sagemath/sage"
|
|
43
|
+
documentation = "https://doc.sagemath.org"
|
|
44
|
+
homepage = "https://www.sagemath.org"
|
|
45
|
+
tracker = "https://github.com/sagemath/sage/issues"
|
|
46
|
+
|
|
47
|
+
[project.readme]
|
|
48
|
+
file = "README.rst"
|
|
49
|
+
content-type = "text/x-rst"
|
|
50
|
+
|
|
51
|
+
[tool.setuptools]
|
|
52
|
+
packages = ["sage.libs.coxeter3"]
|
|
53
|
+
include-package-data = false
|
|
54
|
+
|
|
55
|
+
[tool.setuptools.dynamic]
|
|
56
|
+
version = {file = ["VERSION.txt"]}
|
|
57
|
+
|
|
58
|
+
[tool.setuptools.package-data]
|
|
59
|
+
"sage.libs.coxeter3" = [
|
|
60
|
+
"coxeter.pxd",
|
|
61
|
+
"decl.pxd",
|
|
62
|
+
]
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
include(`sage_spkg_versions_toml.m4')dnl' -*- conf-toml -*-
|
|
2
|
+
[build-system]
|
|
3
|
+
# Minimum requirements for the build system to execute.
|
|
4
|
+
requires = [
|
|
5
|
+
SPKG_INSTALL_REQUIRES_setuptools
|
|
6
|
+
SPKG_INSTALL_REQUIRES_sage_setup
|
|
7
|
+
SPKG_INSTALL_REQUIRES_sagemath_environment
|
|
8
|
+
SPKG_INSTALL_REQUIRES_sagemath_objects
|
|
9
|
+
SPKG_INSTALL_REQUIRES_cython
|
|
10
|
+
SPKG_INSTALL_REQUIRES_cysignals
|
|
11
|
+
SPKG_INSTALL_REQUIRES_pkgconfig
|
|
12
|
+
]
|
|
13
|
+
build-backend = "setuptools.build_meta"
|
|
14
|
+
|
|
15
|
+
[project]
|
|
16
|
+
name = "passagemath-coxeter3"
|
|
17
|
+
description = "passagemath: Coxeter groups, Bruhat ordering, Kazhdan-Lusztig polynomials with coxeter3"
|
|
18
|
+
dependencies = []
|
|
19
|
+
dynamic = ["version"]
|
|
20
|
+
include(`pyproject_toml_metadata.m4')dnl'
|
|
21
|
+
|
|
22
|
+
[project.readme]
|
|
23
|
+
file = "README.rst"
|
|
24
|
+
content-type = "text/x-rst"
|
|
25
|
+
|
|
26
|
+
[tool.setuptools]
|
|
27
|
+
packages = ["sage.libs.coxeter3"]
|
|
28
|
+
include-package-data = false
|
|
29
|
+
|
|
30
|
+
[tool.setuptools.dynamic]
|
|
31
|
+
version = {file = ["VERSION.txt"]}
|
|
32
|
+
|
|
33
|
+
[tool.setuptools.package-data]
|
|
34
|
+
"sage.libs.coxeter3" = [
|
|
35
|
+
"coxeter.pxd",
|
|
36
|
+
"decl.pxd",
|
|
37
|
+
]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# sage_setup: distribution = sagemath-coxeter3
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# sage_setup: distribution = sagemath-coxeter3
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# sage_setup: distribution = sagemath-coxeter3
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# sage_setup: distribution = sagemath-coxeter3
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# sage_setup: distribution = sagemath-coxeter3
|
|
2
|
+
|
|
3
|
+
#*****************************************************************************
|
|
4
|
+
# Copyright (C) 2009-2013 Mike Hansen <mhansen@gmail.com>
|
|
5
|
+
#
|
|
6
|
+
# Distributed under the terms of the GNU General Public License (GPL)
|
|
7
|
+
# http://www.gnu.org/licenses/
|
|
8
|
+
#*****************************************************************************
|
|
9
|
+
|
|
10
|
+
from sage.structure.sage_object cimport SageObject
|
|
11
|
+
from sage.libs.coxeter3.decl cimport *
|
|
12
|
+
|
|
13
|
+
cdef class String:
|
|
14
|
+
cdef c_String x
|
|
15
|
+
|
|
16
|
+
cdef class Type:
|
|
17
|
+
cdef c_Type x
|
|
18
|
+
|
|
19
|
+
cdef class CoxGroup(SageObject):
|
|
20
|
+
cdef c_CoxGroup* x
|
|
21
|
+
cdef object cartan_type
|
|
22
|
+
cdef dict in_ordering
|
|
23
|
+
cdef dict out_ordering
|
|
24
|
+
cpdef object full_context(self) noexcept
|
|
25
|
+
|
|
26
|
+
cdef class CoxGroupElement:
|
|
27
|
+
cdef c_CoxWord word
|
|
28
|
+
cdef c_CoxGroup* group
|
|
29
|
+
cdef CoxGroup _parent_group
|
|
30
|
+
cdef CoxGroupElement _new(self) noexcept
|
|
31
|
+
cpdef CoxGroup parent_group(self) noexcept
|