passagemath-singular 10.6.31rc3__cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.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.
Potentially problematic release.
This version of passagemath-singular might be problematic. Click here for more details.
- PySingular.cpython-314-aarch64-linux-gnu.so +0 -0
- passagemath_singular-10.6.31rc3.dist-info/METADATA +183 -0
- passagemath_singular-10.6.31rc3.dist-info/RECORD +490 -0
- passagemath_singular-10.6.31rc3.dist-info/WHEEL +6 -0
- passagemath_singular-10.6.31rc3.dist-info/top_level.txt +3 -0
- passagemath_singular.libs/libSingular-4-6a2a8666.4.1.so +0 -0
- passagemath_singular.libs/libcddgmp-ac579979.so.0.1.3 +0 -0
- passagemath_singular.libs/libfactory-4-66e33516.4.1.so +0 -0
- passagemath_singular.libs/libflint-81de1160.so.21.0.0 +0 -0
- passagemath_singular.libs/libgf2x-fbd36f80.so.3.0.0 +0 -0
- passagemath_singular.libs/libgfortran-e1b7dfc8.so.5.0.0 +0 -0
- passagemath_singular.libs/libgmp-93ebf16a.so.10.5.0 +0 -0
- passagemath_singular.libs/libgsl-e3525837.so.28.0.0 +0 -0
- passagemath_singular.libs/libmpfr-e0f11cf3.so.6.2.1 +0 -0
- passagemath_singular.libs/libntl-0043a3a2.so.44.0.1 +0 -0
- passagemath_singular.libs/libomalloc-0-06512335.9.6.so +0 -0
- passagemath_singular.libs/libopenblasp-r0-4c5b64b1.3.29.so +0 -0
- passagemath_singular.libs/libpolys-4-cb7246b5.4.1.so +0 -0
- passagemath_singular.libs/libreadline-28330744.so.8.2 +0 -0
- passagemath_singular.libs/libsingular_resources-4-8c425241.4.1.so +0 -0
- passagemath_singular.libs/libtinfo-f81c2d16.so.6.3 +0 -0
- sage/algebras/all__sagemath_singular.py +3 -0
- sage/algebras/fusion_rings/all.py +19 -0
- sage/algebras/fusion_rings/f_matrix.py +2448 -0
- sage/algebras/fusion_rings/fast_parallel_fmats_methods.cpython-314-aarch64-linux-gnu.so +0 -0
- sage/algebras/fusion_rings/fast_parallel_fmats_methods.pxd +5 -0
- sage/algebras/fusion_rings/fast_parallel_fmats_methods.pyx +538 -0
- sage/algebras/fusion_rings/fast_parallel_fusion_ring_braid_repn.cpython-314-aarch64-linux-gnu.so +0 -0
- sage/algebras/fusion_rings/fast_parallel_fusion_ring_braid_repn.pxd +3 -0
- sage/algebras/fusion_rings/fast_parallel_fusion_ring_braid_repn.pyx +331 -0
- sage/algebras/fusion_rings/fusion_double.py +899 -0
- sage/algebras/fusion_rings/fusion_ring.py +1580 -0
- sage/algebras/fusion_rings/poly_tup_engine.cpython-314-aarch64-linux-gnu.so +0 -0
- sage/algebras/fusion_rings/poly_tup_engine.pxd +24 -0
- sage/algebras/fusion_rings/poly_tup_engine.pyx +579 -0
- sage/algebras/fusion_rings/shm_managers.cpython-314-aarch64-linux-gnu.so +0 -0
- sage/algebras/fusion_rings/shm_managers.pxd +24 -0
- sage/algebras/fusion_rings/shm_managers.pyx +780 -0
- sage/algebras/letterplace/all.py +1 -0
- sage/algebras/letterplace/free_algebra_element_letterplace.cpython-314-aarch64-linux-gnu.so +0 -0
- sage/algebras/letterplace/free_algebra_element_letterplace.pxd +18 -0
- sage/algebras/letterplace/free_algebra_element_letterplace.pyx +755 -0
- sage/algebras/letterplace/free_algebra_letterplace.cpython-314-aarch64-linux-gnu.so +0 -0
- sage/algebras/letterplace/free_algebra_letterplace.pxd +35 -0
- sage/algebras/letterplace/free_algebra_letterplace.pyx +914 -0
- sage/algebras/letterplace/letterplace_ideal.cpython-314-aarch64-linux-gnu.so +0 -0
- sage/algebras/letterplace/letterplace_ideal.pyx +408 -0
- sage/algebras/quatalg/all.py +2 -0
- sage/algebras/quatalg/quaternion_algebra.py +4778 -0
- sage/algebras/quatalg/quaternion_algebra_cython.cpython-314-aarch64-linux-gnu.so +0 -0
- sage/algebras/quatalg/quaternion_algebra_cython.pyx +261 -0
- sage/algebras/quatalg/quaternion_algebra_element.cpython-314-aarch64-linux-gnu.so +0 -0
- sage/algebras/quatalg/quaternion_algebra_element.pxd +29 -0
- sage/algebras/quatalg/quaternion_algebra_element.pyx +2176 -0
- sage/all__sagemath_singular.py +11 -0
- sage/ext_data/all__sagemath_singular.py +1 -0
- sage/ext_data/singular/function_field/core.lib +98 -0
- sage/interfaces/all__sagemath_singular.py +1 -0
- sage/interfaces/singular.py +2835 -0
- sage/libs/all__sagemath_singular.py +1 -0
- sage/libs/singular/__init__.py +1 -0
- sage/libs/singular/decl.pxd +1168 -0
- sage/libs/singular/function.cpython-314-aarch64-linux-gnu.so +0 -0
- sage/libs/singular/function.pxd +87 -0
- sage/libs/singular/function.pyx +1901 -0
- sage/libs/singular/function_factory.py +61 -0
- sage/libs/singular/groebner_strategy.cpython-314-aarch64-linux-gnu.so +0 -0
- sage/libs/singular/groebner_strategy.pxd +22 -0
- sage/libs/singular/groebner_strategy.pyx +582 -0
- sage/libs/singular/option.cpython-314-aarch64-linux-gnu.so +0 -0
- sage/libs/singular/option.pyx +671 -0
- sage/libs/singular/polynomial.cpython-314-aarch64-linux-gnu.so +0 -0
- sage/libs/singular/polynomial.pxd +39 -0
- sage/libs/singular/polynomial.pyx +661 -0
- sage/libs/singular/ring.cpython-314-aarch64-linux-gnu.so +0 -0
- sage/libs/singular/ring.pxd +58 -0
- sage/libs/singular/ring.pyx +893 -0
- sage/libs/singular/singular.cpython-314-aarch64-linux-gnu.so +0 -0
- sage/libs/singular/singular.pxd +72 -0
- sage/libs/singular/singular.pyx +1944 -0
- sage/libs/singular/standard_options.py +145 -0
- sage/matrix/all__sagemath_singular.py +1 -0
- sage/matrix/matrix_mpolynomial_dense.cpython-314-aarch64-linux-gnu.so +0 -0
- sage/matrix/matrix_mpolynomial_dense.pxd +7 -0
- sage/matrix/matrix_mpolynomial_dense.pyx +615 -0
- sage/rings/all__sagemath_singular.py +1 -0
- sage/rings/function_field/all__sagemath_singular.py +1 -0
- sage/rings/function_field/derivations_polymod.py +911 -0
- sage/rings/function_field/element_polymod.cpython-314-aarch64-linux-gnu.so +0 -0
- sage/rings/function_field/element_polymod.pyx +406 -0
- sage/rings/function_field/function_field_polymod.py +2611 -0
- sage/rings/function_field/ideal_polymod.py +1775 -0
- sage/rings/function_field/order_polymod.py +1475 -0
- sage/rings/function_field/place_polymod.py +681 -0
- sage/rings/polynomial/all__sagemath_singular.py +1 -0
- sage/rings/polynomial/multi_polynomial_ideal_libsingular.cpython-314-aarch64-linux-gnu.so +0 -0
- sage/rings/polynomial/multi_polynomial_ideal_libsingular.pxd +5 -0
- sage/rings/polynomial/multi_polynomial_ideal_libsingular.pyx +339 -0
- sage/rings/polynomial/multi_polynomial_libsingular.cpython-314-aarch64-linux-gnu.so +0 -0
- sage/rings/polynomial/multi_polynomial_libsingular.pxd +30 -0
- sage/rings/polynomial/multi_polynomial_libsingular.pyx +6277 -0
- sage/rings/polynomial/plural.cpython-314-aarch64-linux-gnu.so +0 -0
- sage/rings/polynomial/plural.pxd +48 -0
- sage/rings/polynomial/plural.pyx +3171 -0
- sage/symbolic/all__sagemath_singular.py +1 -0
- sage/symbolic/comparison_impl.pxi +428 -0
- sage/symbolic/constants_c_impl.pxi +178 -0
- sage/symbolic/expression.cpython-314-aarch64-linux-gnu.so +0 -0
- sage/symbolic/expression.pxd +7 -0
- sage/symbolic/expression.pyx +14200 -0
- sage/symbolic/getitem_impl.pxi +202 -0
- sage/symbolic/pynac.pxi +572 -0
- sage/symbolic/pynac_constant_impl.pxi +133 -0
- sage/symbolic/pynac_function_impl.pxi +206 -0
- sage/symbolic/pynac_impl.pxi +2576 -0
- sage/symbolic/pynac_wrap.h +124 -0
- sage/symbolic/series_impl.pxi +272 -0
- sage/symbolic/substitution_map_impl.pxi +94 -0
- sage_wheels/bin/ESingular +0 -0
- sage_wheels/bin/Singular +0 -0
- sage_wheels/bin/TSingular +0 -0
- sage_wheels/lib/singular/MOD/cohomo.la +41 -0
- sage_wheels/lib/singular/MOD/cohomo.so +0 -0
- sage_wheels/lib/singular/MOD/customstd.la +41 -0
- sage_wheels/lib/singular/MOD/customstd.so +0 -0
- sage_wheels/lib/singular/MOD/freealgebra.la +41 -0
- sage_wheels/lib/singular/MOD/freealgebra.so +0 -0
- sage_wheels/lib/singular/MOD/gfanlib.la +41 -0
- sage_wheels/lib/singular/MOD/gfanlib.so +0 -0
- sage_wheels/lib/singular/MOD/gitfan.la +41 -0
- sage_wheels/lib/singular/MOD/gitfan.so +0 -0
- sage_wheels/lib/singular/MOD/interval.la +41 -0
- sage_wheels/lib/singular/MOD/interval.so +0 -0
- sage_wheels/lib/singular/MOD/loctriv.la +41 -0
- sage_wheels/lib/singular/MOD/loctriv.so +0 -0
- sage_wheels/lib/singular/MOD/machinelearning.la +41 -0
- sage_wheels/lib/singular/MOD/machinelearning.so +0 -0
- sage_wheels/lib/singular/MOD/p_Procs_FieldGeneral.la +41 -0
- sage_wheels/lib/singular/MOD/p_Procs_FieldGeneral.so +0 -0
- sage_wheels/lib/singular/MOD/p_Procs_FieldIndep.la +41 -0
- sage_wheels/lib/singular/MOD/p_Procs_FieldIndep.so +0 -0
- sage_wheels/lib/singular/MOD/p_Procs_FieldQ.la +41 -0
- sage_wheels/lib/singular/MOD/p_Procs_FieldQ.so +0 -0
- sage_wheels/lib/singular/MOD/p_Procs_FieldZp.la +41 -0
- sage_wheels/lib/singular/MOD/p_Procs_FieldZp.so +0 -0
- sage_wheels/lib/singular/MOD/partialgb.la +41 -0
- sage_wheels/lib/singular/MOD/partialgb.so +0 -0
- sage_wheels/lib/singular/MOD/pyobject.la +41 -0
- sage_wheels/lib/singular/MOD/pyobject.so +0 -0
- sage_wheels/lib/singular/MOD/singmathic.la +41 -0
- sage_wheels/lib/singular/MOD/singmathic.so +0 -0
- sage_wheels/lib/singular/MOD/sispasm.la +41 -0
- sage_wheels/lib/singular/MOD/sispasm.so +0 -0
- sage_wheels/lib/singular/MOD/subsets.la +41 -0
- sage_wheels/lib/singular/MOD/subsets.so +0 -0
- sage_wheels/lib/singular/MOD/systhreads.la +41 -0
- sage_wheels/lib/singular/MOD/systhreads.so +0 -0
- sage_wheels/lib/singular/MOD/syzextra.la +41 -0
- sage_wheels/lib/singular/MOD/syzextra.so +0 -0
- sage_wheels/libexec/singular/MOD/change_cost +0 -0
- sage_wheels/libexec/singular/MOD/singularsurf +11 -0
- sage_wheels/libexec/singular/MOD/singularsurf_jupyter +9 -0
- sage_wheels/libexec/singular/MOD/singularsurf_win +10 -0
- sage_wheels/libexec/singular/MOD/solve_IP +0 -0
- sage_wheels/libexec/singular/MOD/surfex +16 -0
- sage_wheels/libexec/singular/MOD/toric_ideal +0 -0
- sage_wheels/share/factory/gftables/10201 +342 -0
- sage_wheels/share/factory/gftables/1024 +37 -0
- sage_wheels/share/factory/gftables/10609 +356 -0
- sage_wheels/share/factory/gftables/11449 +384 -0
- sage_wheels/share/factory/gftables/11881 +398 -0
- sage_wheels/share/factory/gftables/121 +6 -0
- sage_wheels/share/factory/gftables/12167 +408 -0
- sage_wheels/share/factory/gftables/125 +7 -0
- sage_wheels/share/factory/gftables/12769 +428 -0
- sage_wheels/share/factory/gftables/128 +7 -0
- sage_wheels/share/factory/gftables/1331 +47 -0
- sage_wheels/share/factory/gftables/1369 +48 -0
- sage_wheels/share/factory/gftables/14641 +490 -0
- sage_wheels/share/factory/gftables/15625 +523 -0
- sage_wheels/share/factory/gftables/16 +3 -0
- sage_wheels/share/factory/gftables/16129 +540 -0
- sage_wheels/share/factory/gftables/16384 +549 -0
- sage_wheels/share/factory/gftables/16807 +563 -0
- sage_wheels/share/factory/gftables/1681 +58 -0
- sage_wheels/share/factory/gftables/169 +8 -0
- sage_wheels/share/factory/gftables/17161 +574 -0
- sage_wheels/share/factory/gftables/1849 +64 -0
- sage_wheels/share/factory/gftables/18769 +628 -0
- sage_wheels/share/factory/gftables/19321 +646 -0
- sage_wheels/share/factory/gftables/19683 +659 -0
- sage_wheels/share/factory/gftables/2048 +71 -0
- sage_wheels/share/factory/gftables/2187 +75 -0
- sage_wheels/share/factory/gftables/2197 +76 -0
- sage_wheels/share/factory/gftables/2209 +76 -0
- sage_wheels/share/factory/gftables/22201 +742 -0
- sage_wheels/share/factory/gftables/22801 +762 -0
- sage_wheels/share/factory/gftables/2401 +82 -0
- sage_wheels/share/factory/gftables/243 +11 -0
- sage_wheels/share/factory/gftables/24389 +815 -0
- sage_wheels/share/factory/gftables/24649 +824 -0
- sage_wheels/share/factory/gftables/25 +3 -0
- sage_wheels/share/factory/gftables/256 +11 -0
- sage_wheels/share/factory/gftables/26569 +888 -0
- sage_wheels/share/factory/gftables/27 +3 -0
- sage_wheels/share/factory/gftables/27889 +932 -0
- sage_wheels/share/factory/gftables/2809 +96 -0
- sage_wheels/share/factory/gftables/28561 +954 -0
- sage_wheels/share/factory/gftables/289 +12 -0
- sage_wheels/share/factory/gftables/29791 +995 -0
- sage_wheels/share/factory/gftables/29929 +1000 -0
- sage_wheels/share/factory/gftables/3125 +107 -0
- sage_wheels/share/factory/gftables/32 +4 -0
- sage_wheels/share/factory/gftables/32041 +1070 -0
- sage_wheels/share/factory/gftables/32761 +1094 -0
- sage_wheels/share/factory/gftables/32768 +1095 -0
- sage_wheels/share/factory/gftables/343 +14 -0
- sage_wheels/share/factory/gftables/3481 +118 -0
- sage_wheels/share/factory/gftables/361 +14 -0
- sage_wheels/share/factory/gftables/36481 +1218 -0
- sage_wheels/share/factory/gftables/3721 +126 -0
- sage_wheels/share/factory/gftables/37249 +1244 -0
- sage_wheels/share/factory/gftables/38809 +1296 -0
- sage_wheels/share/factory/gftables/39601 +1322 -0
- sage_wheels/share/factory/gftables/4 +3 -0
- sage_wheels/share/factory/gftables/4096 +139 -0
- sage_wheels/share/factory/gftables/44521 +1486 -0
- sage_wheels/share/factory/gftables/4489 +152 -0
- sage_wheels/share/factory/gftables/49 +4 -0
- sage_wheels/share/factory/gftables/4913 +166 -0
- sage_wheels/share/factory/gftables/49729 +1660 -0
- sage_wheels/share/factory/gftables/5041 +170 -0
- sage_wheels/share/factory/gftables/50653 +1691 -0
- sage_wheels/share/factory/gftables/512 +20 -0
- sage_wheels/share/factory/gftables/51529 +1720 -0
- sage_wheels/share/factory/gftables/52441 +1750 -0
- sage_wheels/share/factory/gftables/529 +20 -0
- sage_wheels/share/factory/gftables/5329 +180 -0
- sage_wheels/share/factory/gftables/54289 +1812 -0
- sage_wheels/share/factory/gftables/57121 +1906 -0
- sage_wheels/share/factory/gftables/58081 +1938 -0
- sage_wheels/share/factory/gftables/59049 +1971 -0
- sage_wheels/share/factory/gftables/6241 +210 -0
- sage_wheels/share/factory/gftables/625 +23 -0
- sage_wheels/share/factory/gftables/63001 +2102 -0
- sage_wheels/share/factory/gftables/64 +5 -0
- sage_wheels/share/factory/gftables/6561 +221 -0
- sage_wheels/share/factory/gftables/6859 +231 -0
- sage_wheels/share/factory/gftables/6889 +232 -0
- sage_wheels/share/factory/gftables/729 +27 -0
- sage_wheels/share/factory/gftables/7921 +266 -0
- sage_wheels/share/factory/gftables/8 +3 -0
- sage_wheels/share/factory/gftables/81 +5 -0
- sage_wheels/share/factory/gftables/8192 +276 -0
- sage_wheels/share/factory/gftables/841 +30 -0
- sage_wheels/share/factory/gftables/9 +3 -0
- sage_wheels/share/factory/gftables/9409 +316 -0
- sage_wheels/share/factory/gftables/961 +34 -0
- sage_wheels/share/info/singular.info +191898 -0
- sage_wheels/share/singular/LIB/GND.lib +1359 -0
- sage_wheels/share/singular/LIB/JMBTest.lib +976 -0
- sage_wheels/share/singular/LIB/JMSConst.lib +1363 -0
- sage_wheels/share/singular/LIB/KVequiv.lib +699 -0
- sage_wheels/share/singular/LIB/SingularityDBM.lib +491 -0
- sage_wheels/share/singular/LIB/VecField.lib +1542 -0
- sage_wheels/share/singular/LIB/absfact.lib +959 -0
- sage_wheels/share/singular/LIB/ainvar.lib +730 -0
- sage_wheels/share/singular/LIB/aksaka.lib +419 -0
- sage_wheels/share/singular/LIB/alexpoly.lib +2542 -0
- sage_wheels/share/singular/LIB/algebra.lib +1193 -0
- sage_wheels/share/singular/LIB/all.lib +136 -0
- sage_wheels/share/singular/LIB/arcpoint.lib +514 -0
- sage_wheels/share/singular/LIB/arnold.lib +4553 -0
- sage_wheels/share/singular/LIB/arnoldclassify.lib +2058 -0
- sage_wheels/share/singular/LIB/arr.lib +3486 -0
- sage_wheels/share/singular/LIB/assprimeszerodim.lib +755 -0
- sage_wheels/share/singular/LIB/autgradalg.lib +3361 -0
- sage_wheels/share/singular/LIB/bfun.lib +1964 -0
- sage_wheels/share/singular/LIB/bimodules.lib +774 -0
- sage_wheels/share/singular/LIB/brillnoether.lib +226 -0
- sage_wheels/share/singular/LIB/brnoeth.lib +5017 -0
- sage_wheels/share/singular/LIB/central.lib +2169 -0
- sage_wheels/share/singular/LIB/chern.lib +4162 -0
- sage_wheels/share/singular/LIB/cimonom.lib +571 -0
- sage_wheels/share/singular/LIB/cisimplicial.lib +1835 -0
- sage_wheels/share/singular/LIB/classify.lib +3239 -0
- sage_wheels/share/singular/LIB/classify2.lib +1462 -0
- sage_wheels/share/singular/LIB/classifyMapGerms.lib +1515 -0
- sage_wheels/share/singular/LIB/classify_aeq.lib +3253 -0
- sage_wheels/share/singular/LIB/classifyceq.lib +2092 -0
- sage_wheels/share/singular/LIB/classifyci.lib +1133 -0
- sage_wheels/share/singular/LIB/combinat.lib +91 -0
- sage_wheels/share/singular/LIB/compregb.lib +276 -0
- sage_wheels/share/singular/LIB/control.lib +1636 -0
- sage_wheels/share/singular/LIB/crypto.lib +3795 -0
- sage_wheels/share/singular/LIB/curveInv.lib +667 -0
- sage_wheels/share/singular/LIB/curvepar.lib +1817 -0
- sage_wheels/share/singular/LIB/customstd.lib +100 -0
- sage_wheels/share/singular/LIB/deRham.lib +5979 -0
- sage_wheels/share/singular/LIB/decodegb.lib +2134 -0
- sage_wheels/share/singular/LIB/decomp.lib +1655 -0
- sage_wheels/share/singular/LIB/deflation.lib +872 -0
- sage_wheels/share/singular/LIB/deform.lib +925 -0
- sage_wheels/share/singular/LIB/difform.lib +3055 -0
- sage_wheels/share/singular/LIB/divisors.lib +750 -0
- sage_wheels/share/singular/LIB/dmod.lib +5817 -0
- sage_wheels/share/singular/LIB/dmodapp.lib +3269 -0
- sage_wheels/share/singular/LIB/dmodideal.lib +1211 -0
- sage_wheels/share/singular/LIB/dmodloc.lib +2645 -0
- sage_wheels/share/singular/LIB/dmodvar.lib +818 -0
- sage_wheels/share/singular/LIB/dummy.lib +17 -0
- sage_wheels/share/singular/LIB/elim.lib +1009 -0
- sage_wheels/share/singular/LIB/ellipticcovers.lib +548 -0
- sage_wheels/share/singular/LIB/enumpoints.lib +146 -0
- sage_wheels/share/singular/LIB/equising.lib +2127 -0
- sage_wheels/share/singular/LIB/ffmodstd.lib +2384 -0
- sage_wheels/share/singular/LIB/ffsolve.lib +1289 -0
- sage_wheels/share/singular/LIB/findifs.lib +778 -0
- sage_wheels/share/singular/LIB/finitediff.lib +1768 -0
- sage_wheels/share/singular/LIB/finvar.lib +7989 -0
- sage_wheels/share/singular/LIB/fpadim.lib +2429 -0
- sage_wheels/share/singular/LIB/fpalgebras.lib +1666 -0
- sage_wheels/share/singular/LIB/fpaprops.lib +1462 -0
- sage_wheels/share/singular/LIB/freegb.lib +3853 -0
- sage_wheels/share/singular/LIB/general.lib +1350 -0
- sage_wheels/share/singular/LIB/gfan.lib +1768 -0
- sage_wheels/share/singular/LIB/gitfan.lib +3130 -0
- sage_wheels/share/singular/LIB/gkdim.lib +99 -0
- sage_wheels/share/singular/LIB/gmspoly.lib +589 -0
- sage_wheels/share/singular/LIB/gmssing.lib +1739 -0
- sage_wheels/share/singular/LIB/goettsche.lib +909 -0
- sage_wheels/share/singular/LIB/graal.lib +1366 -0
- sage_wheels/share/singular/LIB/gradedModules.lib +2541 -0
- sage_wheels/share/singular/LIB/graphics.lib +360 -0
- sage_wheels/share/singular/LIB/grobcov.lib +7706 -0
- sage_wheels/share/singular/LIB/groups.lib +1123 -0
- sage_wheels/share/singular/LIB/grwalk.lib +507 -0
- sage_wheels/share/singular/LIB/hdepth.lib +194 -0
- sage_wheels/share/singular/LIB/help.cnf +57 -0
- sage_wheels/share/singular/LIB/hess.lib +1946 -0
- sage_wheels/share/singular/LIB/hnoether.lib +4292 -0
- sage_wheels/share/singular/LIB/hodge.lib +400 -0
- sage_wheels/share/singular/LIB/homolog.lib +1965 -0
- sage_wheels/share/singular/LIB/hyperel.lib +975 -0
- sage_wheels/share/singular/LIB/inout.lib +679 -0
- sage_wheels/share/singular/LIB/integralbasis.lib +6224 -0
- sage_wheels/share/singular/LIB/interval.lib +1418 -0
- sage_wheels/share/singular/LIB/intprog.lib +778 -0
- sage_wheels/share/singular/LIB/invar.lib +443 -0
- sage_wheels/share/singular/LIB/involut.lib +980 -0
- sage_wheels/share/singular/LIB/jacobson.lib +1215 -0
- sage_wheels/share/singular/LIB/kskernel.lib +534 -0
- sage_wheels/share/singular/LIB/latex.lib +3146 -0
- sage_wheels/share/singular/LIB/lejeune.lib +651 -0
- sage_wheels/share/singular/LIB/linalg.lib +2040 -0
- sage_wheels/share/singular/LIB/locnormal.lib +212 -0
- sage_wheels/share/singular/LIB/lrcalc.lib +526 -0
- sage_wheels/share/singular/LIB/makedbm.lib +294 -0
- sage_wheels/share/singular/LIB/mathml.lib +813 -0
- sage_wheels/share/singular/LIB/matrix.lib +1372 -0
- sage_wheels/share/singular/LIB/maxlike.lib +1132 -0
- sage_wheels/share/singular/LIB/methods.lib +212 -0
- sage_wheels/share/singular/LIB/moddiq.lib +322 -0
- sage_wheels/share/singular/LIB/modfinduni.lib +181 -0
- sage_wheels/share/singular/LIB/modnormal.lib +218 -0
- sage_wheels/share/singular/LIB/modprimdec.lib +1278 -0
- sage_wheels/share/singular/LIB/modquotient.lib +269 -0
- sage_wheels/share/singular/LIB/modstd.lib +1024 -0
- sage_wheels/share/singular/LIB/modular.lib +545 -0
- sage_wheels/share/singular/LIB/modules.lib +2561 -0
- sage_wheels/share/singular/LIB/modwalk.lib +609 -0
- sage_wheels/share/singular/LIB/mondromy.lib +1016 -0
- sage_wheels/share/singular/LIB/monomialideal.lib +3851 -0
- sage_wheels/share/singular/LIB/mprimdec.lib +2353 -0
- sage_wheels/share/singular/LIB/mregular.lib +1863 -0
- sage_wheels/share/singular/LIB/multigrading.lib +5629 -0
- sage_wheels/share/singular/LIB/ncHilb.lib +777 -0
- sage_wheels/share/singular/LIB/ncModslimgb.lib +791 -0
- sage_wheels/share/singular/LIB/ncalg.lib +16311 -0
- sage_wheels/share/singular/LIB/ncall.lib +31 -0
- sage_wheels/share/singular/LIB/ncdecomp.lib +468 -0
- sage_wheels/share/singular/LIB/ncfactor.lib +13371 -0
- sage_wheels/share/singular/LIB/ncfrac.lib +1023 -0
- sage_wheels/share/singular/LIB/nchilbert.lib +448 -0
- sage_wheels/share/singular/LIB/nchomolog.lib +759 -0
- sage_wheels/share/singular/LIB/ncloc.lib +361 -0
- sage_wheels/share/singular/LIB/ncpreim.lib +795 -0
- sage_wheels/share/singular/LIB/ncrat.lib +2849 -0
- sage_wheels/share/singular/LIB/nctools.lib +1887 -0
- sage_wheels/share/singular/LIB/nets.lib +1456 -0
- sage_wheels/share/singular/LIB/nfmodstd.lib +1000 -0
- sage_wheels/share/singular/LIB/nfmodsyz.lib +732 -0
- sage_wheels/share/singular/LIB/noether.lib +1106 -0
- sage_wheels/share/singular/LIB/normal.lib +8700 -0
- sage_wheels/share/singular/LIB/normaliz.lib +2226 -0
- sage_wheels/share/singular/LIB/ntsolve.lib +362 -0
- sage_wheels/share/singular/LIB/numerAlg.lib +560 -0
- sage_wheels/share/singular/LIB/numerDecom.lib +2261 -0
- sage_wheels/share/singular/LIB/olga.lib +1933 -0
- sage_wheels/share/singular/LIB/orbitparam.lib +351 -0
- sage_wheels/share/singular/LIB/parallel.lib +319 -0
- sage_wheels/share/singular/LIB/paraplanecurves.lib +3110 -0
- sage_wheels/share/singular/LIB/perron.lib +202 -0
- sage_wheels/share/singular/LIB/pfd.lib +2223 -0
- sage_wheels/share/singular/LIB/phindex.lib +642 -0
- sage_wheels/share/singular/LIB/pointid.lib +673 -0
- sage_wheels/share/singular/LIB/polybori.lib +1430 -0
- sage_wheels/share/singular/LIB/polyclass.lib +525 -0
- sage_wheels/share/singular/LIB/polylib.lib +1174 -0
- sage_wheels/share/singular/LIB/polymake.lib +1902 -0
- sage_wheels/share/singular/LIB/presolve.lib +1533 -0
- sage_wheels/share/singular/LIB/primdec.lib +9576 -0
- sage_wheels/share/singular/LIB/primdecint.lib +1782 -0
- sage_wheels/share/singular/LIB/primitiv.lib +401 -0
- sage_wheels/share/singular/LIB/puiseuxexpansions.lib +1631 -0
- sage_wheels/share/singular/LIB/purityfiltration.lib +960 -0
- sage_wheels/share/singular/LIB/qhmoduli.lib +1561 -0
- sage_wheels/share/singular/LIB/qmatrix.lib +293 -0
- sage_wheels/share/singular/LIB/random.lib +455 -0
- sage_wheels/share/singular/LIB/ratgb.lib +489 -0
- sage_wheels/share/singular/LIB/realclassify.lib +5759 -0
- sage_wheels/share/singular/LIB/realizationMatroids.lib +772 -0
- sage_wheels/share/singular/LIB/realrad.lib +1197 -0
- sage_wheels/share/singular/LIB/recover.lib +2628 -0
- sage_wheels/share/singular/LIB/redcgs.lib +3984 -0
- sage_wheels/share/singular/LIB/reesclos.lib +465 -0
- sage_wheels/share/singular/LIB/resbinomial.lib +2802 -0
- sage_wheels/share/singular/LIB/resgraph.lib +789 -0
- sage_wheels/share/singular/LIB/resjung.lib +820 -0
- sage_wheels/share/singular/LIB/resolve.lib +5110 -0
- sage_wheels/share/singular/LIB/resources.lib +170 -0
- sage_wheels/share/singular/LIB/reszeta.lib +5473 -0
- sage_wheels/share/singular/LIB/ring.lib +1328 -0
- sage_wheels/share/singular/LIB/ringgb.lib +343 -0
- sage_wheels/share/singular/LIB/rinvar.lib +1153 -0
- sage_wheels/share/singular/LIB/rootisolation.lib +1481 -0
- sage_wheels/share/singular/LIB/rootsmr.lib +709 -0
- sage_wheels/share/singular/LIB/rootsur.lib +886 -0
- sage_wheels/share/singular/LIB/rstandard.lib +607 -0
- sage_wheels/share/singular/LIB/rwalk.lib +336 -0
- sage_wheels/share/singular/LIB/sagbi.lib +1353 -0
- sage_wheels/share/singular/LIB/sagbiNormaliz.lib +1622 -0
- sage_wheels/share/singular/LIB/sagbiNormaliz0.lib +1498 -0
- sage_wheels/share/singular/LIB/sagbigrob.lib +449 -0
- sage_wheels/share/singular/LIB/schreyer.lib +321 -0
- sage_wheels/share/singular/LIB/schubert.lib +2551 -0
- sage_wheels/share/singular/LIB/sets.lib +524 -0
- sage_wheels/share/singular/LIB/sheafcoh.lib +1663 -0
- sage_wheels/share/singular/LIB/signcond.lib +437 -0
- sage_wheels/share/singular/LIB/sing.lib +1094 -0
- sage_wheels/share/singular/LIB/sing4ti2.lib +419 -0
- sage_wheels/share/singular/LIB/solve.lib +2243 -0
- sage_wheels/share/singular/LIB/spcurve.lib +1077 -0
- sage_wheels/share/singular/LIB/spectrum.lib +62 -0
- sage_wheels/share/singular/LIB/sresext.lib +757 -0
- sage_wheels/share/singular/LIB/ssi.lib +143 -0
- sage_wheels/share/singular/LIB/standard.lib +2769 -0
- sage_wheels/share/singular/LIB/stanleyreisner.lib +473 -0
- sage_wheels/share/singular/LIB/stdmodule.lib +547 -0
- sage_wheels/share/singular/LIB/stratify.lib +1070 -0
- sage_wheels/share/singular/LIB/surf.lib +506 -0
- sage_wheels/share/singular/LIB/surf_jupyter.lib +223 -0
- sage_wheels/share/singular/LIB/surfacesignature.lib +522 -0
- sage_wheels/share/singular/LIB/surfex.lib +1462 -0
- sage_wheels/share/singular/LIB/swalk.lib +877 -0
- sage_wheels/share/singular/LIB/symodstd.lib +1570 -0
- sage_wheels/share/singular/LIB/systhreads.lib +74 -0
- sage_wheels/share/singular/LIB/tasks.lib +1324 -0
- sage_wheels/share/singular/LIB/tateProdCplxNegGrad.lib +2412 -0
- sage_wheels/share/singular/LIB/teachstd.lib +858 -0
- sage_wheels/share/singular/LIB/template.lib +116 -0
- sage_wheels/share/singular/LIB/toric.lib +1119 -0
- sage_wheels/share/singular/LIB/transformation.lib +116 -0
- sage_wheels/share/singular/LIB/triang.lib +1197 -0
- sage_wheels/share/singular/LIB/tropical.lib +8741 -0
- sage_wheels/share/singular/LIB/tropicalEllipticCovers.lib +2922 -0
- sage_wheels/share/singular/LIB/tropicalNewton.lib +1128 -0
- sage_wheels/share/singular/LIB/tst.lib +1108 -0
- sage_wheels/share/singular/LIB/weierstr.lib +241 -0
- sage_wheels/share/singular/LIB/zeroset.lib +1478 -0
- sage_wheels/share/singular/emacs/.emacs-general +184 -0
- sage_wheels/share/singular/emacs/.emacs-singular +234 -0
- sage_wheels/share/singular/emacs/COPYING +44 -0
- sage_wheels/share/singular/emacs/cmd-cmpl.el +241 -0
- sage_wheels/share/singular/emacs/ex-cmpl.el +1681 -0
- sage_wheels/share/singular/emacs/hlp-cmpl.el +4318 -0
- sage_wheels/share/singular/emacs/lib-cmpl.el +179 -0
- sage_wheels/share/singular/emacs/singular.el +4273 -0
- sage_wheels/share/singular/emacs/singular.xpm +39 -0
- sage_wheels/share/singular/singular.idx +5002 -0
|
@@ -0,0 +1,526 @@
|
|
|
1
|
+
////////////////////////////////////////////////////////////////
|
|
2
|
+
version="version lrcalc.lib 4.1.2.0 Feb_2019 "; //$Id: a9bab711c6bc2f300ef68436f957dd011a7e36d3 $
|
|
3
|
+
category="Littlewood-Richardson coefficients";
|
|
4
|
+
info="
|
|
5
|
+
LIBRARY: lrcalc.lib An interface to the Littlewood-Richardson Calculator by Anders Buch
|
|
6
|
+
|
|
7
|
+
AUTHOR: Oleksandr Iena, o.g.yena@gmail.com
|
|
8
|
+
|
|
9
|
+
OVERVIEW:
|
|
10
|
+
An interface to the documented functions of the Littlewood-Richardson Calculator
|
|
11
|
+
by Anders Buch is implemented.
|
|
12
|
+
The library requires the Littlewood-Richardson Calculator by Anders Buch,
|
|
13
|
+
which is available at http://math.rutgers.edu/~asbuch/lrcalc/
|
|
14
|
+
|
|
15
|
+
REFERENCES:
|
|
16
|
+
[1] http://math.rutgers.edu/~asbuch/lrcalc/
|
|
17
|
+
http://math.rutgers.edu/~asbuch/lrcalc/lrcalc-1.2/README
|
|
18
|
+
|
|
19
|
+
PROCEDURES:
|
|
20
|
+
LRinstall() installs the Littlewood-Richardson Calculator
|
|
21
|
+
LRcoef(z, x, y); Littlewood-Richardson coefficient c^z_{x, y}
|
|
22
|
+
LRskew(z, x) partitions y for which the Littlewood-Richardson coefficient
|
|
23
|
+
c^z_{x,y} is non-zero together with that coefficient
|
|
24
|
+
LRmult(x, y) partitions z for which the Littlewood-Richardson coefficient
|
|
25
|
+
c^z_{x,y} is non-zero together with that coefficient
|
|
26
|
+
LRcoprod(z) pairs of partitions x and y for which the Littlewood-Richardson
|
|
27
|
+
coefficient c^z_{x,y} is non-zero together with that coefficient
|
|
28
|
+
LRschubmult(x, y) expantion of a product of two Schubert polynomials
|
|
29
|
+
in the basis of Schubert polynomials
|
|
30
|
+
";
|
|
31
|
+
//----------------------------------------------------------
|
|
32
|
+
|
|
33
|
+
proc LRinstall()
|
|
34
|
+
"USAGE: LRinstall();
|
|
35
|
+
RETURN: int (exit status of the shell)
|
|
36
|
+
PURPOSE: installs the Littlewood-Richardson Calculator
|
|
37
|
+
EXAMPLE: example LRinstall; shows an example
|
|
38
|
+
NOTE:
|
|
39
|
+
"
|
|
40
|
+
{
|
|
41
|
+
int i;
|
|
42
|
+
string s;
|
|
43
|
+
s = "wget math.rutgers.edu/~asbuch/lrcalc/lrcalc-1.2.tar.gz";
|
|
44
|
+
s = s + " && tar zxvf lrcalc-1.2.tar.gz && cd lrcalc-1.2";
|
|
45
|
+
s = s + " && ./configure && make && sudo make install";
|
|
46
|
+
i=system("sh", s);
|
|
47
|
+
return(i);
|
|
48
|
+
}
|
|
49
|
+
example
|
|
50
|
+
{
|
|
51
|
+
"EXAMPLE:"; echo = 2;
|
|
52
|
+
// In order to install the Littlewood-Richardson Calculator
|
|
53
|
+
// type "LRinstall();"
|
|
54
|
+
// This will execute the following commands:
|
|
55
|
+
// wget math.rutgers.edu/~asbuch/lrcalc/lrcalc-1.2.tar.gz
|
|
56
|
+
// tar zxvf lrcalc-1.2.tar.gz
|
|
57
|
+
// cd lrcalc-1.2
|
|
58
|
+
// ./configure
|
|
59
|
+
// make
|
|
60
|
+
// sudo make install
|
|
61
|
+
}
|
|
62
|
+
//----------------------------------------------------------
|
|
63
|
+
|
|
64
|
+
proc LRcoef(list u, list l1, list l2)
|
|
65
|
+
"USAGE: LRcoef(z, x, y); z, x, y lists of integers (partitions)
|
|
66
|
+
RETURN: bigint
|
|
67
|
+
PURPOSE: computes the Littlewood-Richardson coefficient c^z_{x, y}
|
|
68
|
+
EXAMPLE: example LRcoef; shows an example
|
|
69
|
+
NOTE:
|
|
70
|
+
"
|
|
71
|
+
{
|
|
72
|
+
// construct a string with the required lrcalc command to be passed to shell
|
|
73
|
+
string s="lrcalc coef";
|
|
74
|
+
int i;
|
|
75
|
+
int sz;
|
|
76
|
+
sz=size(u);
|
|
77
|
+
for(i=1; i<=sz; i++)
|
|
78
|
+
{
|
|
79
|
+
s=s+" "+string(u[i]);
|
|
80
|
+
}
|
|
81
|
+
s=s+" -";
|
|
82
|
+
sz=size(l1);
|
|
83
|
+
for(i=1; i<=sz; i++)
|
|
84
|
+
{
|
|
85
|
+
s=s+" "+string(l1[i]);
|
|
86
|
+
}
|
|
87
|
+
s=s+" -";
|
|
88
|
+
sz=size(l2);
|
|
89
|
+
for(i=1; i<=sz; i++)
|
|
90
|
+
{
|
|
91
|
+
s=s+" "+string(l2[i]);
|
|
92
|
+
}
|
|
93
|
+
s=read("|: "+s); // execute the string in shell and return the output string back to Singular
|
|
94
|
+
return( string2int(s) ); // return the integer represented by this string
|
|
95
|
+
}
|
|
96
|
+
example
|
|
97
|
+
{
|
|
98
|
+
"EXAMPLE:"; echo = 2;
|
|
99
|
+
// Compute the Littlewood-Richardson coefficient c^z_{x, y}
|
|
100
|
+
// for z= (3, 2, 1), x=(2, 1), y=(2, 1)
|
|
101
|
+
list z = 3, 2, 1;
|
|
102
|
+
list x = 2, 1;
|
|
103
|
+
list y = 2, 1;
|
|
104
|
+
LRcoef(z, x, y);
|
|
105
|
+
}
|
|
106
|
+
//----------------------------------------------------------
|
|
107
|
+
|
|
108
|
+
proc LRskew(list I, list J, list #)
|
|
109
|
+
"USAGE: LRskew(z, x [,s, r]); z, x lists of integers (partitions)
|
|
110
|
+
s string equal to 'r', r non-negative integer
|
|
111
|
+
RETURN: list of lists
|
|
112
|
+
PURPOSE: computes the partitions y for which the Littlewood-Richardson
|
|
113
|
+
coefficient c^z_{x,y} is non-zero together with that coefficient;
|
|
114
|
+
only partitions up to length r are computed
|
|
115
|
+
if the optional parameters age given
|
|
116
|
+
EXAMPLE: example LRskew; shows an example
|
|
117
|
+
NOTE:
|
|
118
|
+
"
|
|
119
|
+
{
|
|
120
|
+
// construct a string with the required lrcalc command to be passed to shell
|
|
121
|
+
string s="lrcalc skew";
|
|
122
|
+
int sz;
|
|
123
|
+
// take care of the optional parameters
|
|
124
|
+
sz = size(#);
|
|
125
|
+
if(sz!=0) // if there are optional parameters
|
|
126
|
+
{
|
|
127
|
+
if(typeof(#[1])=="string") // if the first optional parameter is a string
|
|
128
|
+
{
|
|
129
|
+
if(#[1]=="r") // if it equals "r"
|
|
130
|
+
{
|
|
131
|
+
if(sz>1) // if there is a second optional parameter
|
|
132
|
+
{
|
|
133
|
+
if(typeof(#[2])=="int") // that is integer
|
|
134
|
+
{
|
|
135
|
+
if(#[2]>=0) // and non-negative
|
|
136
|
+
{
|
|
137
|
+
s=s+ " -r "+string(#[2]); // add the corresponding string to the lrcalc command
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
int i;
|
|
145
|
+
sz=size(I);
|
|
146
|
+
for(i=1; i<=sz; i++)
|
|
147
|
+
{
|
|
148
|
+
s=s+" "+string(I[i]);
|
|
149
|
+
}
|
|
150
|
+
s=s+" /";
|
|
151
|
+
sz=size(J);
|
|
152
|
+
for(i=1; i<=sz; i++)
|
|
153
|
+
{
|
|
154
|
+
s=s+" "+string(J[i]);
|
|
155
|
+
}
|
|
156
|
+
// execute the string in shell and return the output string back to Singular
|
|
157
|
+
link L="|: "+s+" && echo end";
|
|
158
|
+
list rez; // the result will be computed here
|
|
159
|
+
list T;
|
|
160
|
+
int next;
|
|
161
|
+
while(1)
|
|
162
|
+
{
|
|
163
|
+
s=read(L);
|
|
164
|
+
if(s=="end")
|
|
165
|
+
{
|
|
166
|
+
break;
|
|
167
|
+
}
|
|
168
|
+
i=1;
|
|
169
|
+
next=find(s," ",i);
|
|
170
|
+
if(next ==0){break;}
|
|
171
|
+
T=list(string2int(s[i,next-i]));
|
|
172
|
+
i=next+1;
|
|
173
|
+
next=find(s, "(", i);
|
|
174
|
+
i=next+1;
|
|
175
|
+
next=find(s, ")", i);
|
|
176
|
+
T= T+list( string2list(s[i,next-i]) );
|
|
177
|
+
rez=rez+ list(T);
|
|
178
|
+
}
|
|
179
|
+
close(L);
|
|
180
|
+
return( rez ); // return the result
|
|
181
|
+
}
|
|
182
|
+
example
|
|
183
|
+
{
|
|
184
|
+
"EXAMPLE:"; echo = 2;
|
|
185
|
+
// Compute the partitions y for which the Littlewood-Richardson coefficient
|
|
186
|
+
// c^z_{x,y} is non-zero together with that coefficient
|
|
187
|
+
// for z= (3, 2, 1), x=(2, 1)
|
|
188
|
+
list z = 3, 2, 1;
|
|
189
|
+
list x = 2, 1;
|
|
190
|
+
LRskew(z, x);
|
|
191
|
+
// Now compute only the partitions with at most 2 entries
|
|
192
|
+
LRskew(z, x, "r", 2);
|
|
193
|
+
}
|
|
194
|
+
//----------------------------------------------------------
|
|
195
|
+
|
|
196
|
+
proc LRmult(list I, list J, list #)
|
|
197
|
+
"USAGE: LRmult(x, y); x, y lists of integers (partitions)
|
|
198
|
+
LRmult(x, y [, s, r]); x, y lists of integers (partitions),
|
|
199
|
+
s string equal to 'r', r integer
|
|
200
|
+
LRmult(x, y [, s, m, k]); x, y lists of integers (partitions),
|
|
201
|
+
s string equal to 'q' or 'f', m, k integers
|
|
202
|
+
RETURN: list of lists
|
|
203
|
+
PURPOSE: computes the partitions z for which the Littlewood-Richardson
|
|
204
|
+
coefficient c^z_{x,y} is non-zero together with that coefficient;
|
|
205
|
+
partitions up to length r
|
|
206
|
+
EXAMPLE: example LRmult; shows an example
|
|
207
|
+
NOTE:
|
|
208
|
+
"
|
|
209
|
+
{
|
|
210
|
+
// construct a string with the required lrcalc command to be passed to shell
|
|
211
|
+
string s="lrcalc mult";
|
|
212
|
+
int i;
|
|
213
|
+
int sz;
|
|
214
|
+
// take care of the optional parameters
|
|
215
|
+
sz = size(#);
|
|
216
|
+
if(sz!=0) // if there are optional parameters
|
|
217
|
+
{
|
|
218
|
+
if(typeof(#[1])=="string") // if the first optional parameter is a string
|
|
219
|
+
{
|
|
220
|
+
if(#[1]=="r") // if the first optional parameter is "r"
|
|
221
|
+
{
|
|
222
|
+
if(sz>1) // if there is a second optional parameter
|
|
223
|
+
{
|
|
224
|
+
if(typeof(#[2])=="int") // which is an integer
|
|
225
|
+
{
|
|
226
|
+
if(#[2]>=0) // and non-negative
|
|
227
|
+
{
|
|
228
|
+
s=s+ " -r "+string(#[2]); // add the corresponding string to the lrcalc command
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
if( (#[1]=="q") || (#[1]=="f") ) // if the first optional parameter is "q" or "f"
|
|
234
|
+
{
|
|
235
|
+
if(sz>2) // if there are a second and a third parameters
|
|
236
|
+
{
|
|
237
|
+
if( ( typeof(#[2])=="int" ) && ( typeof(#[3])=="int" ) ) // that are integers
|
|
238
|
+
{
|
|
239
|
+
if( (#[2]>0)&&(#[3]>0) ) // and positive
|
|
240
|
+
{
|
|
241
|
+
// add the corresponding string to the lrcalc command
|
|
242
|
+
s=s+ " -"+#[1]+" "+string(#[2])+","+string(#[3]);
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
}
|
|
248
|
+
}
|
|
249
|
+
sz=size(I);
|
|
250
|
+
for(i=1; i<=sz; i++)
|
|
251
|
+
{
|
|
252
|
+
s=s+" "+string(I[i]);
|
|
253
|
+
}
|
|
254
|
+
s=s+" -";
|
|
255
|
+
sz=size(J);
|
|
256
|
+
for(i=1; i<=sz; i++)
|
|
257
|
+
{
|
|
258
|
+
s=s+" "+string(J[i]);
|
|
259
|
+
}
|
|
260
|
+
// execute the string in shell and return the output string back to Singular
|
|
261
|
+
link L="|: "+s+" && echo end";
|
|
262
|
+
list rez; // the result will be computed here
|
|
263
|
+
list T;
|
|
264
|
+
int next;
|
|
265
|
+
while(1)
|
|
266
|
+
{
|
|
267
|
+
s=read(L);
|
|
268
|
+
if(s=="end")
|
|
269
|
+
{
|
|
270
|
+
break;
|
|
271
|
+
}
|
|
272
|
+
i=1;
|
|
273
|
+
next=find(s," ",i);
|
|
274
|
+
if(next ==0){break;}
|
|
275
|
+
T=list(string2int(s[i,next-i]));
|
|
276
|
+
i=next+1;
|
|
277
|
+
next=find(s, "(", i);
|
|
278
|
+
i=next+1;
|
|
279
|
+
next=find(s, ")", i);
|
|
280
|
+
T= T+list( string2list(s[i,next-i]) );
|
|
281
|
+
rez=rez+ list(T);
|
|
282
|
+
}
|
|
283
|
+
close(L);
|
|
284
|
+
return( rez ); // return the result
|
|
285
|
+
}
|
|
286
|
+
example
|
|
287
|
+
{
|
|
288
|
+
"EXAMPLE:"; echo = 2;
|
|
289
|
+
// Compute the partitions z for which the Littlewood-Richardson coefficient
|
|
290
|
+
// c^z_{x,y} is non-zero together with that coefficient
|
|
291
|
+
// for x= (2, 1), y=(2, 1)
|
|
292
|
+
list x = 2, 1;
|
|
293
|
+
list y = 2, 1;
|
|
294
|
+
LRmult(x, y);
|
|
295
|
+
// Now compute only the partitions with at most 2 entries
|
|
296
|
+
LRmult(x, y, "r", 2);
|
|
297
|
+
// Now compute the product in the quantum cohomology ring of the Grassmannian Gr(3,3+2).
|
|
298
|
+
LRmult(x, y, "q", 3, 2);
|
|
299
|
+
// Compute the same product with the output given in fusion ring notation
|
|
300
|
+
LRmult(x, y, "f", 3, 2);
|
|
301
|
+
}
|
|
302
|
+
//----------------------------------------------------------
|
|
303
|
+
|
|
304
|
+
proc LRcoprod(list I)
|
|
305
|
+
"USAGE: LRcoprod(z); z list of integers (partition)
|
|
306
|
+
RETURN: list of lists
|
|
307
|
+
PURPOSE: computes the pairs of partitions x and y for which
|
|
308
|
+
the Littlewood-Richardson coefficient c^z_{x,y} is non-zero
|
|
309
|
+
together with that coefficient
|
|
310
|
+
EXAMPLE: example LRcoprod; shows an example
|
|
311
|
+
NOTE:
|
|
312
|
+
"
|
|
313
|
+
{
|
|
314
|
+
// construct a string with the required lrcalc command to be passed to shell
|
|
315
|
+
string s="lrcalc coprod";
|
|
316
|
+
int i;
|
|
317
|
+
int sz;
|
|
318
|
+
sz=size(I);
|
|
319
|
+
for(i=1; i<=sz; i++)
|
|
320
|
+
{
|
|
321
|
+
s=s+" "+string(I[i]);
|
|
322
|
+
}
|
|
323
|
+
// execute the string in shell and return the output string back to Singular
|
|
324
|
+
link L="|: "+s+" && echo end";
|
|
325
|
+
list rez; // the result will be computed here
|
|
326
|
+
list T;
|
|
327
|
+
int next;
|
|
328
|
+
while(1)
|
|
329
|
+
{
|
|
330
|
+
s=read(L);
|
|
331
|
+
if(s=="end")
|
|
332
|
+
{
|
|
333
|
+
break;
|
|
334
|
+
}
|
|
335
|
+
i=1;
|
|
336
|
+
next=find(s," ",i);
|
|
337
|
+
if(next ==0){break;}
|
|
338
|
+
T=list(string2int(s[i,next-i]));
|
|
339
|
+
i=next+1;
|
|
340
|
+
next=find(s, "(", i);
|
|
341
|
+
i=next+1;
|
|
342
|
+
next=find(s, ")", i);
|
|
343
|
+
T= T+list( string2list(s[i,next-i]) );
|
|
344
|
+
i=next+1;
|
|
345
|
+
next=find(s, "(", i);
|
|
346
|
+
i=next+1;
|
|
347
|
+
next=find(s, ")", i);
|
|
348
|
+
T= T+list( string2list(s[i,next-i]) );
|
|
349
|
+
rez=rez+ list(T);
|
|
350
|
+
}
|
|
351
|
+
close(L);
|
|
352
|
+
return( rez ); // return the result
|
|
353
|
+
}
|
|
354
|
+
example
|
|
355
|
+
{
|
|
356
|
+
"EXAMPLE:"; echo = 2;
|
|
357
|
+
// Compute the pairs of partitions x and y for which the Littlewood-Richardson
|
|
358
|
+
// coefficient c^z_{x,y} is non-zero together with that coefficient
|
|
359
|
+
// for z= (3, 2, 1)
|
|
360
|
+
list z = 3, 2, 1;
|
|
361
|
+
LRcoprod(z);
|
|
362
|
+
}
|
|
363
|
+
//----------------------------------------------------------
|
|
364
|
+
|
|
365
|
+
proc LRschubmult(list I, list J)
|
|
366
|
+
"USAGE: LRschubmult(x, y); x, y lists of integers
|
|
367
|
+
RETURN: list of lists
|
|
368
|
+
PURPOSE: computes the expantion of a product
|
|
369
|
+
of two Schubert polynomials in the basis of Schubert polynomials
|
|
370
|
+
EXAMPLE: example LRschubmult; shows an example
|
|
371
|
+
NOTE:
|
|
372
|
+
"
|
|
373
|
+
{
|
|
374
|
+
// construct a string with the required lrcalc command to be passed to shell
|
|
375
|
+
string s="schubmult";
|
|
376
|
+
int i;
|
|
377
|
+
int sz;
|
|
378
|
+
sz=size(I);
|
|
379
|
+
for(i=1; i<=sz; i++)
|
|
380
|
+
{
|
|
381
|
+
s=s+" "+string(I[i]);
|
|
382
|
+
}
|
|
383
|
+
s=s+" -";
|
|
384
|
+
sz=size(J);
|
|
385
|
+
for(i=1; i<=sz; i++)
|
|
386
|
+
{
|
|
387
|
+
s=s+" "+string(J[i]);
|
|
388
|
+
}
|
|
389
|
+
// execute the string in shell and return the output string back to Singular
|
|
390
|
+
link L="|: "+s+" && echo end";
|
|
391
|
+
list rez; // the result will be computed here
|
|
392
|
+
list T;
|
|
393
|
+
int next;
|
|
394
|
+
while(1)
|
|
395
|
+
{
|
|
396
|
+
s=read(L);
|
|
397
|
+
if(s=="end")
|
|
398
|
+
{
|
|
399
|
+
break;
|
|
400
|
+
}
|
|
401
|
+
i=1;
|
|
402
|
+
next=find(s," ",i);
|
|
403
|
+
if(next ==0){break;}
|
|
404
|
+
T=list(string2int(s[i,next-i]));
|
|
405
|
+
i=next+1;
|
|
406
|
+
next=find(s, "(", i);
|
|
407
|
+
i=next+1;
|
|
408
|
+
next=find(s, ")", i);
|
|
409
|
+
T= T+list( string2list(s[i,next-i]) );
|
|
410
|
+
rez=rez+ list(T);
|
|
411
|
+
}
|
|
412
|
+
close(L);
|
|
413
|
+
return( rez ); // return the result
|
|
414
|
+
}
|
|
415
|
+
example
|
|
416
|
+
{
|
|
417
|
+
"EXAMPLE:"; echo = 2;
|
|
418
|
+
// Compute the expantion of a square of the Schubert polynomial
|
|
419
|
+
// corresponding to (1 3 2) in the basis of Schubert polynomials
|
|
420
|
+
list x = 1, 3, 2;
|
|
421
|
+
LRschubmult(x, x);
|
|
422
|
+
}
|
|
423
|
+
//----------------------------------------------------------------------------------------
|
|
424
|
+
// The procedures below are for the internal usage only
|
|
425
|
+
//----------------------------------------------------------------------------------------
|
|
426
|
+
|
|
427
|
+
static proc string2list(string s)
|
|
428
|
+
"USAGE: string2list(s); s string
|
|
429
|
+
RETURN: list of integers
|
|
430
|
+
PURPOSE: converts a string representing integers separated by commas
|
|
431
|
+
into a list of integers
|
|
432
|
+
EXAMPLE: example string2list; shows an example
|
|
433
|
+
NOTE:
|
|
434
|
+
"
|
|
435
|
+
{
|
|
436
|
+
list l; // the result will be computed here
|
|
437
|
+
if(size(s)==0) // if the string is empty
|
|
438
|
+
{
|
|
439
|
+
return(list(0)); // return zero
|
|
440
|
+
}
|
|
441
|
+
// otherwise form the corresponding list
|
|
442
|
+
execute("l="+s+";")
|
|
443
|
+
return(l); // return the result
|
|
444
|
+
}
|
|
445
|
+
example
|
|
446
|
+
{
|
|
447
|
+
"EXAMPLE:"; echo = 2;
|
|
448
|
+
// Convert the string "3, 2, 1" into the corresponding list of integers
|
|
449
|
+
string s= "3, 2, 1";
|
|
450
|
+
string2list(s);
|
|
451
|
+
}
|
|
452
|
+
//----------------------------------------------------------
|
|
453
|
+
|
|
454
|
+
static proc string2int(string s)
|
|
455
|
+
"USAGE: string2int(s); s string
|
|
456
|
+
RETURN: biging
|
|
457
|
+
PURPOSE: converts a string representing a non-negative integer into integer
|
|
458
|
+
EXAMPLE: example string2int; shows an example
|
|
459
|
+
NOTE:
|
|
460
|
+
"
|
|
461
|
+
{
|
|
462
|
+
bigint rez;
|
|
463
|
+
int sz=size(s);
|
|
464
|
+
if(sz==0) // if the string s is empty, return zero
|
|
465
|
+
{
|
|
466
|
+
return(bigint(0));
|
|
467
|
+
}
|
|
468
|
+
// read the first character of the string and transform it to the corresponding digit
|
|
469
|
+
while(1)
|
|
470
|
+
{
|
|
471
|
+
if(s[1]=="0")
|
|
472
|
+
{
|
|
473
|
+
rez=0; break;
|
|
474
|
+
}
|
|
475
|
+
if(s[1]=="1")
|
|
476
|
+
{
|
|
477
|
+
rez=1; break;
|
|
478
|
+
}
|
|
479
|
+
if(s[1]=="2")
|
|
480
|
+
{
|
|
481
|
+
rez=2; break;
|
|
482
|
+
}
|
|
483
|
+
if(s[1]=="3")
|
|
484
|
+
{
|
|
485
|
+
rez=3; break;
|
|
486
|
+
}
|
|
487
|
+
if(s[1]=="4")
|
|
488
|
+
{
|
|
489
|
+
rez=4; break;
|
|
490
|
+
}
|
|
491
|
+
if(s[1]=="5")
|
|
492
|
+
{
|
|
493
|
+
rez=5; break;
|
|
494
|
+
}
|
|
495
|
+
if(s[1]=="6")
|
|
496
|
+
{
|
|
497
|
+
rez=6; break;
|
|
498
|
+
}
|
|
499
|
+
if(s[1]=="7")
|
|
500
|
+
{
|
|
501
|
+
rez=7; break;
|
|
502
|
+
}
|
|
503
|
+
if(s[1]=="8")
|
|
504
|
+
{
|
|
505
|
+
rez=8; break;
|
|
506
|
+
}
|
|
507
|
+
if(s[1]=="9")
|
|
508
|
+
{
|
|
509
|
+
rez=9; break;
|
|
510
|
+
}
|
|
511
|
+
}
|
|
512
|
+
if(sz==1) // if the string is of length 1
|
|
513
|
+
{
|
|
514
|
+
return(bigint(rez)); // return the result
|
|
515
|
+
}
|
|
516
|
+
// otherwise compute the result recursively
|
|
517
|
+
return( rez*bigint(10)^(sz-1) + string2int(s[2,sz-1]) );
|
|
518
|
+
}
|
|
519
|
+
example
|
|
520
|
+
{
|
|
521
|
+
"EXAMPLE:"; echo = 2;
|
|
522
|
+
// Convert the string "728" into the corresponding integer
|
|
523
|
+
string s= "728";
|
|
524
|
+
string2int(s);
|
|
525
|
+
}
|
|
526
|
+
//----------------------------------------------------------
|