schubmult 2.0.4__py3-none-any.whl → 3.0.1__py3-none-any.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.
- schubmult/__init__.py +96 -1
- schubmult/perm_lib.py +254 -819
- schubmult/poly_lib/__init__.py +31 -0
- schubmult/poly_lib/poly_lib.py +276 -0
- schubmult/poly_lib/schub_poly.py +148 -0
- schubmult/poly_lib/variables.py +204 -0
- schubmult/rings/__init__.py +18 -0
- schubmult/rings/_quantum_schubert_polynomial_ring.py +752 -0
- schubmult/rings/_schubert_polynomial_ring.py +1031 -0
- schubmult/rings/_tensor_schub_ring.py +128 -0
- schubmult/rings/_utils.py +55 -0
- schubmult/{sage_integration → sage}/__init__.py +4 -1
- schubmult/{sage_integration → sage}/_fast_double_schubert_polynomial_ring.py +67 -109
- schubmult/{sage_integration → sage}/_fast_schubert_polynomial_ring.py +33 -28
- schubmult/{sage_integration → sage}/_indexing.py +9 -5
- schubmult/schub_lib/__init__.py +51 -0
- schubmult/{schubmult_double/_funcs.py → schub_lib/double.py} +532 -596
- schubmult/{schubmult_q/_funcs.py → schub_lib/quantum.py} +54 -53
- schubmult/schub_lib/quantum_double.py +954 -0
- schubmult/schub_lib/schub_lib.py +659 -0
- schubmult/{schubmult_py/_funcs.py → schub_lib/single.py} +45 -35
- schubmult/schub_lib/tests/__init__.py +0 -0
- schubmult/schub_lib/tests/legacy_perm_lib.py +946 -0
- schubmult/schub_lib/tests/test_vs_old.py +109 -0
- schubmult/scripts/__init__.py +0 -0
- schubmult/scripts/schubmult_double.py +378 -0
- schubmult/scripts/schubmult_py.py +84 -0
- schubmult/scripts/schubmult_q.py +109 -0
- schubmult/scripts/schubmult_q_double.py +207 -0
- schubmult/utils/__init__.py +0 -0
- schubmult/{_base_argparse.py → utils/argparse.py} +29 -5
- schubmult/utils/logging.py +16 -0
- schubmult/utils/parsing.py +20 -0
- schubmult/utils/perm_utils.py +135 -0
- schubmult/utils/test_utils.py +65 -0
- schubmult-3.0.1.dist-info/METADATA +1234 -0
- schubmult-3.0.1.dist-info/RECORD +41 -0
- {schubmult-2.0.4.dist-info → schubmult-3.0.1.dist-info}/WHEEL +1 -1
- schubmult-3.0.1.dist-info/entry_points.txt +5 -0
- schubmult/_tests.py +0 -24
- schubmult/schubmult_double/__init__.py +0 -12
- schubmult/schubmult_double/__main__.py +0 -6
- schubmult/schubmult_double/_script.py +0 -474
- schubmult/schubmult_py/__init__.py +0 -12
- schubmult/schubmult_py/__main__.py +0 -6
- schubmult/schubmult_py/_script.py +0 -97
- schubmult/schubmult_q/__init__.py +0 -8
- schubmult/schubmult_q/__main__.py +0 -6
- schubmult/schubmult_q/_script.py +0 -166
- schubmult/schubmult_q_double/__init__.py +0 -10
- schubmult/schubmult_q_double/__main__.py +0 -6
- schubmult/schubmult_q_double/_funcs.py +0 -540
- schubmult/schubmult_q_double/_script.py +0 -396
- schubmult-2.0.4.dist-info/METADATA +0 -542
- schubmult-2.0.4.dist-info/RECORD +0 -30
- schubmult-2.0.4.dist-info/entry_points.txt +0 -5
- {schubmult-2.0.4.dist-info → schubmult-3.0.1.dist-info}/licenses/LICENSE +0 -0
- {schubmult-2.0.4.dist-info → schubmult-3.0.1.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,51 @@
|
|
1
|
+
# from .quantum_double import (
|
2
|
+
# schubpoly_quantum,
|
3
|
+
# )
|
4
|
+
# from .schub_lib import (
|
5
|
+
# check_blocks,
|
6
|
+
# compute_vpathdicts,
|
7
|
+
# divdiffable,
|
8
|
+
# double_elem_sym_q,
|
9
|
+
# elem_sym_perms,
|
10
|
+
# elem_sym_perms_op,
|
11
|
+
# elem_sym_perms_q,
|
12
|
+
# elem_sym_perms_q_op,
|
13
|
+
# is_coeff_irreducible,
|
14
|
+
# is_hook,
|
15
|
+
# is_reducible,
|
16
|
+
# is_split_two,
|
17
|
+
# kdown_perms,
|
18
|
+
# pull_out_var,
|
19
|
+
# reduce_coeff,
|
20
|
+
# reduce_descents,
|
21
|
+
# reduce_q_coeff,
|
22
|
+
# reduce_q_coeff_u_only,
|
23
|
+
# try_reduce_u,
|
24
|
+
# try_reduce_v,
|
25
|
+
# will_formula_work,
|
26
|
+
# )
|
27
|
+
|
28
|
+
# __all__ = [
|
29
|
+
# "check_blocks",
|
30
|
+
# "compute_vpathdicts",
|
31
|
+
# "divdiffable",
|
32
|
+
# "double_elem_sym_q",
|
33
|
+
# "elem_sym_perms",
|
34
|
+
# "elem_sym_perms_op",
|
35
|
+
# "elem_sym_perms_q",
|
36
|
+
# "elem_sym_perms_q_op",
|
37
|
+
# "is_coeff_irreducible",
|
38
|
+
# "is_hook",
|
39
|
+
# "is_reducible",
|
40
|
+
# "is_split_two",
|
41
|
+
# "kdown_perms",
|
42
|
+
# "pull_out_var",
|
43
|
+
# "reduce_coeff",
|
44
|
+
# "reduce_descents",
|
45
|
+
# "reduce_q_coeff",
|
46
|
+
# "reduce_q_coeff_u_only",
|
47
|
+
# "schubpoly_quantum",
|
48
|
+
# "try_reduce_u",
|
49
|
+
# "try_reduce_v",
|
50
|
+
# "will_formula_work",
|
51
|
+
# ]
|