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,184 @@
|
|
|
1
|
+
;;; Emacs edit mode for this file is -*- Emacs-Lisp -*-
|
|
2
|
+
|
|
3
|
+
;;;
|
|
4
|
+
;;; .emacs-general - Emacs initialization file for general emacs
|
|
5
|
+
;;; settings which have nothing to do with the
|
|
6
|
+
;;; singular-emacs mode, but which we recommend
|
|
7
|
+
;;; nevertheless, so that your emacs is more useful.
|
|
8
|
+
;;;
|
|
9
|
+
;;; This file is loaded by .emacs-singular, if it exists in your home directory
|
|
10
|
+
;;; or in the singular-emacs directory.
|
|
11
|
+
;;;
|
|
12
|
+
;;; If you have your own .emacs file, you might consider copying
|
|
13
|
+
;;; this file to your home directory and then load it from your .emacs
|
|
14
|
+
;;; file with: (load-file "~/.emacs-general")
|
|
15
|
+
;;;
|
|
16
|
+
;;;
|
|
17
|
+
|
|
18
|
+
;; a handy function for customizing the face of point
|
|
19
|
+
(defun customize-face-at-point ()
|
|
20
|
+
"Customize face which point is at."
|
|
21
|
+
(interactive)
|
|
22
|
+
(let ((face (get-text-property (point) 'face)))
|
|
23
|
+
(if face
|
|
24
|
+
(customize-face face)
|
|
25
|
+
(message "No face defined at point"))))
|
|
26
|
+
|
|
27
|
+
;; I love font-lock mode
|
|
28
|
+
(add-hook 'emacs-lisp-mode-hook 'turn-on-font-lock)
|
|
29
|
+
(add-hook 'lisp-mode-hook 'turn-on-font-lock)
|
|
30
|
+
(add-hook 'c-mode-hook 'turn-on-font-lock)
|
|
31
|
+
(add-hook 'c++-mode-hook 'turn-on-font-lock)
|
|
32
|
+
(add-hook 'perl-mode-hook 'turn-on-font-lock)
|
|
33
|
+
(add-hook 'tex-mode-hook 'turn-on-font-lock)
|
|
34
|
+
(add-hook 'texinfo-mode-hook 'turn-on-font-lock)
|
|
35
|
+
(add-hook 'postscript-mode-hook 'turn-on-font-lock)
|
|
36
|
+
(add-hook 'dired-mode-hook 'turn-on-font-lock)
|
|
37
|
+
(add-hook 'ada-mode-hook 'turn-on-font-lock)
|
|
38
|
+
(add-hook 'TeX-mode-hook 'turn-on-font-lock)
|
|
39
|
+
(add-hook 'shell-mode-hook 'turn-on-font-lock)
|
|
40
|
+
|
|
41
|
+
;;;
|
|
42
|
+
;;; settings for both Emacs and XEmacs
|
|
43
|
+
;;;
|
|
44
|
+
(custom-set-variables
|
|
45
|
+
'(next-line-add-newlines nil)
|
|
46
|
+
'(require-final-newline nil)
|
|
47
|
+
'(line-number-mode t)
|
|
48
|
+
'(kill-whole-line t)
|
|
49
|
+
'(truncate-lines t)
|
|
50
|
+
; I like unique buffer names based on dirs
|
|
51
|
+
'(uniquify-buffer-name-style 'post-forward-angle-brackets))
|
|
52
|
+
|
|
53
|
+
(require 'uniquify)
|
|
54
|
+
|
|
55
|
+
(cond ((string-match "XEmacs\\|Lucid" emacs-version)
|
|
56
|
+
;;
|
|
57
|
+
;; XEmacs specific stuff
|
|
58
|
+
;;
|
|
59
|
+
|
|
60
|
+
;; I like some more keybindings for better moving
|
|
61
|
+
(define-key global-map '(control up)
|
|
62
|
+
'(lambda () (interactive) (scroll-up -1)))
|
|
63
|
+
;; control-, scrolls up
|
|
64
|
+
(define-key global-map '(control down)
|
|
65
|
+
'(lambda () (interactive) (scroll-up 1)))
|
|
66
|
+
|
|
67
|
+
;; a function which on C-= reload a file automatically without
|
|
68
|
+
;; asking for confirmation got it from From: Richard Mlynarik
|
|
69
|
+
;; <mly@adoc.xerox.com> on 1/18/95
|
|
70
|
+
;; find-alternate-file (C-x C-v) is almost equivalent
|
|
71
|
+
(global-set-key [(control =)] '(lambda ()
|
|
72
|
+
(interactive)
|
|
73
|
+
(or (verify-visited-file-modtime
|
|
74
|
+
(current-buffer))
|
|
75
|
+
(revert-buffer t t))))
|
|
76
|
+
;; turn on auto-compression of gz files
|
|
77
|
+
(toggle-auto-compression 1)
|
|
78
|
+
|
|
79
|
+
;; Use the "Describe Variable..." option on the "Help" menu
|
|
80
|
+
;; or C-h v to find out what these variables mean.
|
|
81
|
+
(custom-set-variables
|
|
82
|
+
'(complex-buffers-menu-p t)
|
|
83
|
+
'(kill-whole-line t))
|
|
84
|
+
|
|
85
|
+
(setq minibuffer-confirm-incomplete t)
|
|
86
|
+
|
|
87
|
+
;; show matching parantheses
|
|
88
|
+
(paren-set-mode 'paren)
|
|
89
|
+
|
|
90
|
+
;; func-menu is a package that scans your source file for function
|
|
91
|
+
;; definitions and makes a menubar entry that lets you jump to any
|
|
92
|
+
;; particular function definition by selecting it from the menu. The
|
|
93
|
+
;; following code turns this on for all of the recognized languages.
|
|
94
|
+
(require 'func-menu)
|
|
95
|
+
(define-key global-map 'f8 'function-menu)
|
|
96
|
+
(add-hook 'find-file-hooks 'fume-add-menubar-entry)
|
|
97
|
+
(define-key global-map "\C-cl" 'fume-list-functions)
|
|
98
|
+
(define-key global-map "\C-cg" 'fume-prompt-function-goto)
|
|
99
|
+
|
|
100
|
+
;; The Hyperbole information manager package uses (shift button2) and
|
|
101
|
+
;; (shift button3) to provide context-sensitive mouse keys. If you
|
|
102
|
+
;; use this next binding, it will conflict with Hyperbole's setup.
|
|
103
|
+
;; Choose another mouse key if you use Hyperbole.
|
|
104
|
+
(define-key global-map '(shift button3) 'mouse-function-menu)
|
|
105
|
+
|
|
106
|
+
;; For descriptions of the following user-customizable variables,
|
|
107
|
+
;; type C-h v <variable>
|
|
108
|
+
(setq fume-max-items 25
|
|
109
|
+
fume-fn-window-position 3
|
|
110
|
+
fume-auto-position-popup t
|
|
111
|
+
fume-display-in-modeline-p t
|
|
112
|
+
fume-menubar-menu-location "File"
|
|
113
|
+
fume-buffer-name "*Function List*"
|
|
114
|
+
fume-no-prompt-on-valid-default nil)
|
|
115
|
+
|
|
116
|
+
;; end Xemacs stuff
|
|
117
|
+
)
|
|
118
|
+
(t
|
|
119
|
+
;;
|
|
120
|
+
;; Emcas stuff
|
|
121
|
+
;;
|
|
122
|
+
|
|
123
|
+
;; show matching parantheses
|
|
124
|
+
(show-paren-mode t)
|
|
125
|
+
|
|
126
|
+
;; turn on auto (de)compression of files
|
|
127
|
+
(auto-compression-mode t)
|
|
128
|
+
|
|
129
|
+
;; End Emcas stuff
|
|
130
|
+
)
|
|
131
|
+
)
|
|
132
|
+
|
|
133
|
+
;; use auctex as default mode for editing latex stuff
|
|
134
|
+
(let ((auctex-filename (locate-library "tex-site")))
|
|
135
|
+
(if auctex-filename
|
|
136
|
+
(require 'tex-site auctex-filename)))
|
|
137
|
+
|
|
138
|
+
;; put stuff here which should not be/only be executed under
|
|
139
|
+
;; mswindows/unix
|
|
140
|
+
(cond ((or (eq system-type 'cygwin32)
|
|
141
|
+
(eq system-type 'windows-nt))
|
|
142
|
+
;;; mswindows stuff
|
|
143
|
+
|
|
144
|
+
;; Let shell be /bin/bash, if it exists
|
|
145
|
+
(cond ((file-exists-p "/bin/bash")
|
|
146
|
+
(setq explicit-shell-filename "/bin/bash")
|
|
147
|
+
(setq explicit-bash-args (list "--login" "-i"))))
|
|
148
|
+
|
|
149
|
+
; patch these function so that they do not use ~ for backup under
|
|
150
|
+
; mswindows
|
|
151
|
+
(defun make-backup-file-name (file)
|
|
152
|
+
"Create the non-numeric backup file name for FILE.
|
|
153
|
+
This is a separate function so you can redefine it for customization."
|
|
154
|
+
(if (eq system-type 'ms-dos)
|
|
155
|
+
(let ((fn (file-name-nondirectory file)))
|
|
156
|
+
(concat (file-name-directory file)
|
|
157
|
+
(if (string-match "\\([^.]*\\)\\(\\..*\\)?" fn)
|
|
158
|
+
(substring fn 0 (match-end 1)))
|
|
159
|
+
".bak"))
|
|
160
|
+
(if (or (eq system-type 'cygwin32)
|
|
161
|
+
(eq system-type 'windows-nt))
|
|
162
|
+
(concat file ".bak")
|
|
163
|
+
(concat file "~"))))
|
|
164
|
+
|
|
165
|
+
(defun backup-file-name-p (file)
|
|
166
|
+
"Return non-nil if FILE is a backup file name (numeric or not).
|
|
167
|
+
This is a separate function so you can redefine it for customization.
|
|
168
|
+
You may need to redefine `file-name-sans-versions' as well."
|
|
169
|
+
(if (or (eq system-type 'ms-dos)
|
|
170
|
+
(eq system-type 'cygwin32)
|
|
171
|
+
(eq system-type 'windows-nt))
|
|
172
|
+
(string-match "\\.bak\\'" file)
|
|
173
|
+
(string-match "~\\'" file)))
|
|
174
|
+
|
|
175
|
+
;;; end mswindows stuff
|
|
176
|
+
)
|
|
177
|
+
(t
|
|
178
|
+
;;; stuff for unix only
|
|
179
|
+
|
|
180
|
+
;;; end stuff for unix only
|
|
181
|
+
))
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
|
|
@@ -0,0 +1,234 @@
|
|
|
1
|
+
;;; Emacs edit mode for this file is -*- Emacs-Lisp -*-
|
|
2
|
+
|
|
3
|
+
;;;
|
|
4
|
+
;;; .emacs-singular - Emacs initialization file to use for
|
|
5
|
+
;;; Singular interactive mode.
|
|
6
|
+
;;;
|
|
7
|
+
;;; If you run ESingular, then this file is loaded instead of the
|
|
8
|
+
;;; default ~/.emacs initialization file.
|
|
9
|
+
;;;
|
|
10
|
+
;;; How you use this file very much depends on your attitude
|
|
11
|
+
;;; towards Emacs:
|
|
12
|
+
;;;
|
|
13
|
+
;;; 1) If you are going to use Emacs solely as frontend to
|
|
14
|
+
;;; Singular you do not have to worry at all about this file.
|
|
15
|
+
;;; 2) If you are already an experienced Emacs user you may
|
|
16
|
+
;;; want to copy this file's contents to your .emacs file.
|
|
17
|
+
;;; 3) If you are planning to become an experienced Emacs user
|
|
18
|
+
;;; you may use this file as starting point for your .emacs
|
|
19
|
+
;;; file, that is, for your Emacs initialization file. Simply
|
|
20
|
+
;;; copy it to your home directory and rename it to ".emacs"
|
|
21
|
+
;;; (without the quotes, of course). Then edit it as
|
|
22
|
+
;;; described below.
|
|
23
|
+
;;;
|
|
24
|
+
;;; In cases 2) and 3) you should be careful what exactly to copy
|
|
25
|
+
;;; to your .emacs file. In general, you need the following:
|
|
26
|
+
;;;
|
|
27
|
+
;;; o the hook-customizations with `add-hook';
|
|
28
|
+
;;; o the pre-customized settings with `custom-set-variables' and
|
|
29
|
+
;;; `custom-set-faces';
|
|
30
|
+
;;; o the code which creates menus for starting Singular;
|
|
31
|
+
;;; o the code which loads singular.el (located at the end of
|
|
32
|
+
;;; this file) you have to replace by something else, for
|
|
33
|
+
;;; example, an `autoload'.
|
|
34
|
+
;;; o the code which is in .emacs-general
|
|
35
|
+
;;;
|
|
36
|
+
;;; Here is how the Singular customization in your .emacs may
|
|
37
|
+
;;; look like:
|
|
38
|
+
;;;
|
|
39
|
+
;;; ;; extra key bindings
|
|
40
|
+
;;; (add-hook 'singular-interactive-mode-hook
|
|
41
|
+
;;; <... code omitted, see below for details ...>)
|
|
42
|
+
;;;
|
|
43
|
+
;;; ;; other, "non-customizable" settings
|
|
44
|
+
;;; (add-hook 'singular-interactive-mode-hook
|
|
45
|
+
;;; <... code omitted, see below for details ...>)
|
|
46
|
+
;;;
|
|
47
|
+
;;; ;; pre-customized settings
|
|
48
|
+
;;; (custom-set-variables
|
|
49
|
+
;;; <... code omitted, see below for details ...>)
|
|
50
|
+
;;; (custom-set-faces
|
|
51
|
+
;;; <... code omitted, see below for details ...>)
|
|
52
|
+
;;;
|
|
53
|
+
;;; ;; add global menus for Singular
|
|
54
|
+
;;; <... choose your version for either Emacs or XEmacs, see below ...>
|
|
55
|
+
;;;
|
|
56
|
+
;;; ;; add Singular toolbar for XEmacs
|
|
57
|
+
;;; <... insert the code below if you are running XEmacs ...>
|
|
58
|
+
;;;
|
|
59
|
+
;;; ;; add Singular Emacs home directory to `load-path'
|
|
60
|
+
;;; (setq load-path (cons "<your-singular-emacs-home-directory>" load-path))
|
|
61
|
+
;;; (autoload 'singular "singular"
|
|
62
|
+
;;; "Start Singular using default values." t)
|
|
63
|
+
;;; (autoload 'singular-other "singular"
|
|
64
|
+
;;; "Ask for arguments and start Singular." t)
|
|
65
|
+
;;;
|
|
66
|
+
|
|
67
|
+
;; extra key bindings
|
|
68
|
+
(add-hook 'singular-interactive-mode-hook
|
|
69
|
+
(function (lambda ()
|
|
70
|
+
;; control cursor keys
|
|
71
|
+
(cond
|
|
72
|
+
;; Emacs
|
|
73
|
+
((eq singular-emacs-flavor 'emacs)
|
|
74
|
+
(local-set-key [C-prior] 'singular-scroll-right)
|
|
75
|
+
(local-set-key [C-next] 'singular-scroll-left)
|
|
76
|
+
(local-set-key [C-up] 'comint-previous-prompt)
|
|
77
|
+
(local-set-key [C-down] 'comint-next-prompt))
|
|
78
|
+
;; XEmacs
|
|
79
|
+
(t
|
|
80
|
+
(local-set-key [(control prior)] 'singular-scroll-right)
|
|
81
|
+
(local-set-key [(control next)] 'singular-scroll-left)
|
|
82
|
+
(local-set-key [(control up)] 'comint-previous-prompt)
|
|
83
|
+
(local-set-key [(control down)] 'comint-next-prompt))))))
|
|
84
|
+
|
|
85
|
+
;; other, "non-customizable" settings
|
|
86
|
+
|
|
87
|
+
;; put stuff here which should not be/only be executed under
|
|
88
|
+
;; mswindows/unix
|
|
89
|
+
(cond ((or (eq system-type 'cygwin32)
|
|
90
|
+
(eq system-type 'windows-nt))
|
|
91
|
+
;; mswindows stuff
|
|
92
|
+
|
|
93
|
+
)
|
|
94
|
+
(t
|
|
95
|
+
;; unix stuff
|
|
96
|
+
|
|
97
|
+
;; lazy-lock seems to be broken under mswindows:
|
|
98
|
+
;; causes delay of input (only reacts after mouse click), or even total
|
|
99
|
+
;; hang
|
|
100
|
+
;(add-hook 'font-lock-mode-hook 'lazy-lock-mode)
|
|
101
|
+
;(setq font-lock-support-mode 'lazy-lock-mode)
|
|
102
|
+
|
|
103
|
+
;; somewhat nicer scrolling This causes a core dump with 21.1.9
|
|
104
|
+
;; under cygwin, when a file is opened with a button
|
|
105
|
+
;; Fixed it with a simmple patch, by working around the
|
|
106
|
+
;; assertion in file indent.c line 517 (or so). This was
|
|
107
|
+
;; officially fixed in 21.1.10 -- still sometimes
|
|
108
|
+
;; interactive windows disappeared. Hence, do not set it under
|
|
109
|
+
;; Windows
|
|
110
|
+
(setq scroll-step 10)
|
|
111
|
+
|
|
112
|
+
)
|
|
113
|
+
)
|
|
114
|
+
|
|
115
|
+
(add-hook 'singular-interactive-mode-hook
|
|
116
|
+
(function (lambda () (font-lock-mode 1))))
|
|
117
|
+
|
|
118
|
+
;; turn on c++-mode for files ending in ".sing" and ".lib"
|
|
119
|
+
(setq auto-mode-alist (cons '("\\.sing\\'" . c++-mode) auto-mode-alist))
|
|
120
|
+
(setq auto-mode-alist (cons '("\\.lib\\'" . c++-mode) auto-mode-alist))
|
|
121
|
+
(add-hook 'c++-mode-hook
|
|
122
|
+
(function (lambda () (font-lock-mode 1))))
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
|
|
126
|
+
;; this is a work-around for early version of Font Lock mode
|
|
127
|
+
;; which do not use `defface' to define faces. It forces
|
|
128
|
+
;; `custom-set-faces' to define the faces immediately.
|
|
129
|
+
(make-face 'font-lock-comment-face)
|
|
130
|
+
(make-face 'font-lock-string-face)
|
|
131
|
+
|
|
132
|
+
;; tricky stuff: these customization settings are not used any
|
|
133
|
+
;; longer as soon as user saved her own to ~/.emacs-singular-cust
|
|
134
|
+
(setq custom-file "~/.emacs-singular-cust")
|
|
135
|
+
(if (file-exists-p custom-file)
|
|
136
|
+
(load-file custom-file)
|
|
137
|
+
|
|
138
|
+
;; pre-customized settings
|
|
139
|
+
(custom-set-variables
|
|
140
|
+
'(mouse-yank-at-point t)
|
|
141
|
+
'(font-lock-maximum-decoration t t)
|
|
142
|
+
'(next-line-add-newlines nil)
|
|
143
|
+
'(paren-mode (quote paren) nil (paren))
|
|
144
|
+
'(show-paren-mode t nil (paren))
|
|
145
|
+
'(singular-help-same-window t)
|
|
146
|
+
'(singular-cursor-key-model (quote terminal))
|
|
147
|
+
'(transient-mark-mode t)
|
|
148
|
+
'(Info-button1-follows-hyperlink t)
|
|
149
|
+
'(singular-section-face-alist (quote ((input . singular-section-input-face) (output)))))
|
|
150
|
+
|
|
151
|
+
(custom-set-faces
|
|
152
|
+
'(info-xref ((t (:foreground "blue" :bold t))))
|
|
153
|
+
'(info-node ((t (:foreground "blue" :bold t :italic t))))
|
|
154
|
+
'(show-paren-match-face ((((class color)) (:foreground "Red"))))
|
|
155
|
+
'(font-lock-variable-name-face ((t (:foreground "black"))) t)
|
|
156
|
+
'(paren-match ((t (:foreground "Red"))) t)
|
|
157
|
+
'(singular-section-input-face ((t (:bold t))))
|
|
158
|
+
'(font-lock-string-face ((((class color) (background light)) (:foreground "green4"))))
|
|
159
|
+
'(font-lock-doc-string-face ((((class color) (background light)) (:foreground "green4"))))
|
|
160
|
+
'(font-lock-keyword-face ((t (:bold t :foreground "violet"))) t)
|
|
161
|
+
'(singular-section-output-face ((t (:bold nil))))
|
|
162
|
+
'(font-lock-type-face ((t (:bold t :foreground "violet"))) t)
|
|
163
|
+
'(font-lock-comment-face ((t (:bold nil :foreground "Red"))) t)
|
|
164
|
+
'(font-lock-function-name-face ((t (:bold t :foreground "blue3"))) t))
|
|
165
|
+
'(info-xref ((t (:foreground "blue" :bold t))))
|
|
166
|
+
'(info-node ((t (:foreground "blue" :bold t :italic nil))))
|
|
167
|
+
;; obachman: played around a little bit, found this better
|
|
168
|
+
;; '(singular-section-input-face ((t (:bold t))))
|
|
169
|
+
;; '(singular-section-output-face ((t (:bold nil))))
|
|
170
|
+
;; '(font-lock-comment-face ((t (:bold nil :foreground "Grey30"))) t)
|
|
171
|
+
;; '(font-lock-string-face ((((class color) (background light)) (:foreground "Blue")) (((class color) (background dark)) (:foreground "LightSkyBlue"))) t)
|
|
172
|
+
;; '(paren-match ((t (:foreground "Red"))) t)
|
|
173
|
+
;; '(show-paren-match-face ((((class color)) (:foreground "Red")))))
|
|
174
|
+
)
|
|
175
|
+
|
|
176
|
+
;; update singular-emacs-home-directory
|
|
177
|
+
(setq singular-emacs-home-directory
|
|
178
|
+
(concat singular-emacs-home-directory
|
|
179
|
+
;; we check for trailing slash and backslash
|
|
180
|
+
;; but unconditionally insert a slash.
|
|
181
|
+
;; Hopefully that works on NT, too.
|
|
182
|
+
(if (memq (aref singular-emacs-home-directory
|
|
183
|
+
(1- (length singular-emacs-home-directory)))
|
|
184
|
+
'(?/ ?\\))
|
|
185
|
+
"" "/")))
|
|
186
|
+
|
|
187
|
+
;; add global menus for Singular, Emacs version
|
|
188
|
+
(unless (fboundp 'add-submenu)
|
|
189
|
+
(setq singular-start-map (make-sparse-keymap))
|
|
190
|
+
(define-key singular-start-map [menu-bar singular]
|
|
191
|
+
(cons "Singular" (make-sparse-keymap "Singular")))
|
|
192
|
+
(define-key singular-start-map [menu-bar singular restart]
|
|
193
|
+
'("Start..." . singular-other))
|
|
194
|
+
(define-key singular-start-map [menu-bar singular start-default]
|
|
195
|
+
'("Start default" . singular))
|
|
196
|
+
(setq menu-bar-final-item (append '(singular) menu-bar-final-items))
|
|
197
|
+
(use-local-map singular-start-map))
|
|
198
|
+
|
|
199
|
+
;; add global menus for Singular, XEmacs version
|
|
200
|
+
(when (fboundp 'add-submenu)
|
|
201
|
+
(add-submenu nil
|
|
202
|
+
'("Singular"
|
|
203
|
+
["Start default" singular t]
|
|
204
|
+
["Start..." singular-other t]))
|
|
205
|
+
(setq-default current-menubar current-menubar))
|
|
206
|
+
|
|
207
|
+
;; add Singular button to toolbar for XEmacs
|
|
208
|
+
;(if (fboundp 'toolbar-add-item)
|
|
209
|
+
; (toolbar-add-item
|
|
210
|
+
; (vector
|
|
211
|
+
; (toolbar-make-button-list (concat singular-emacs-home-directory
|
|
212
|
+
; "singular.xpm"))
|
|
213
|
+
; 'singular t "Start Singular")
|
|
214
|
+
; (length (specifier-instance default-toolbar))))
|
|
215
|
+
;
|
|
216
|
+
;;;
|
|
217
|
+
;;; - load singular.el and .emacs-general
|
|
218
|
+
;;;
|
|
219
|
+
|
|
220
|
+
; get rid of superfluous "Load .emacs" menu entry on XEmacs
|
|
221
|
+
(when (fboundp 'delete-menu-item)
|
|
222
|
+
(delete-menu-item '("Load .emacs")) ; that is for the current buffer
|
|
223
|
+
(let ((current-menubar (default-value 'current-menubar)))
|
|
224
|
+
(delete-menu-item '("Load .emacs")) ; that is for all other buffers
|
|
225
|
+
(set-default 'current-menubar current-menubar)))
|
|
226
|
+
|
|
227
|
+
; load singular.el from `singular-emacs-home-directory'
|
|
228
|
+
(load-file (concat singular-emacs-home-directory "singular.el"))
|
|
229
|
+
|
|
230
|
+
; load .emacs-general from home or `singular-emacs-home-directory'
|
|
231
|
+
(if (file-exists-p "~/.emacs-general")
|
|
232
|
+
(load-file "~/.emacs-general")
|
|
233
|
+
(if (file-exists-p (concat singular-emacs-home-directory ".emacs-general"))
|
|
234
|
+
(load-file (concat singular-emacs-home-directory ".emacs-general"))))
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
SINGULAR version 4-4
|
|
2
|
+
Singular-ESingular
|
|
3
|
+
|
|
4
|
+
University of Kaiserslautern
|
|
5
|
+
|
|
6
|
+
Department of Mathematics and Centre for Computer Algebra
|
|
7
|
+
|
|
8
|
+
Authors: W. Decker, G.-M. Greuel, G. Pfister, H. Schoenemann
|
|
9
|
+
|
|
10
|
+
Copyright (C) 1986-2025
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
*NOTICE*
|
|
15
|
+
|
|
16
|
+
This program is free software; you can redistribute it and/or modify it
|
|
17
|
+
under the terms of the GNU General Public License as published by the
|
|
18
|
+
Free Software Foundation ( version 2 or version 3 of the License );
|
|
19
|
+
with the following additional remarks:
|
|
20
|
+
|
|
21
|
+
This package is part of the software SINGULAR. The GPL is valid for
|
|
22
|
+
this package, other packages may have other copyrights.
|
|
23
|
+
|
|
24
|
+
Their copyrights and licences can be found in the accompanying files
|
|
25
|
+
which are distributed along with these packages.
|
|
26
|
+
|
|
27
|
+
This program is distributed in the hope that it will be useful, but
|
|
28
|
+
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
29
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
30
|
+
General Public License for more details.
|
|
31
|
+
|
|
32
|
+
You should have received a copy of the GNU General Public License along
|
|
33
|
+
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
34
|
+
59 Temple Place, Suite 330, Boston, MA 02111-1307 USA (see GPL)
|
|
35
|
+
|
|
36
|
+
Please send any comments or bug reports to
|
|
37
|
+
<singular@mathematik.uni-kl.de>.
|
|
38
|
+
|
|
39
|
+
Availability
|
|
40
|
+
============
|
|
41
|
+
|
|
42
|
+
The latest information about SINGULAR is always available from
|
|
43
|
+
`https://www.singular.uni-kl.de'.
|
|
44
|
+
|
|
@@ -0,0 +1,241 @@
|
|
|
1
|
+
; Do not edit this file: It was automatically generated by cmpl.pl
|
|
2
|
+
(setq singular-commands-alist
|
|
3
|
+
'(
|
|
4
|
+
("ERROR")
|
|
5
|
+
("insert")
|
|
6
|
+
("parstr")
|
|
7
|
+
("GCD")
|
|
8
|
+
("int")
|
|
9
|
+
("poly")
|
|
10
|
+
("IN")
|
|
11
|
+
("interpolation")
|
|
12
|
+
("preimage")
|
|
13
|
+
("LIB")
|
|
14
|
+
("interred")
|
|
15
|
+
("prime")
|
|
16
|
+
("NF")
|
|
17
|
+
("intersect")
|
|
18
|
+
("primefactors")
|
|
19
|
+
("RETURN")
|
|
20
|
+
("intmat")
|
|
21
|
+
("print")
|
|
22
|
+
("TRACE")
|
|
23
|
+
("intvec")
|
|
24
|
+
("printlevel")
|
|
25
|
+
("alias")
|
|
26
|
+
("jacob")
|
|
27
|
+
("proc")
|
|
28
|
+
("and")
|
|
29
|
+
("janet")
|
|
30
|
+
("prune")
|
|
31
|
+
("attrib")
|
|
32
|
+
("jet")
|
|
33
|
+
("qhweight")
|
|
34
|
+
("bareiss")
|
|
35
|
+
("kbase")
|
|
36
|
+
("qrds")
|
|
37
|
+
("betti")
|
|
38
|
+
("keepring")
|
|
39
|
+
("qring")
|
|
40
|
+
("bigint")
|
|
41
|
+
("kernel")
|
|
42
|
+
("quote")
|
|
43
|
+
("bigintmat")
|
|
44
|
+
("kill")
|
|
45
|
+
("quotient")
|
|
46
|
+
("bracket")
|
|
47
|
+
("killattrib")
|
|
48
|
+
("random")
|
|
49
|
+
("break")
|
|
50
|
+
("koszul")
|
|
51
|
+
("rank")
|
|
52
|
+
("breakpoint")
|
|
53
|
+
("kres")
|
|
54
|
+
("read")
|
|
55
|
+
("char")
|
|
56
|
+
("laguerre")
|
|
57
|
+
("reduce")
|
|
58
|
+
("char_series")
|
|
59
|
+
("lead")
|
|
60
|
+
("regularity")
|
|
61
|
+
("charstr")
|
|
62
|
+
("leadcoef")
|
|
63
|
+
("repart")
|
|
64
|
+
("chinrem")
|
|
65
|
+
("leadexp")
|
|
66
|
+
("reservedName")
|
|
67
|
+
("cleardenom")
|
|
68
|
+
("leadmonom")
|
|
69
|
+
("resolution")
|
|
70
|
+
("close")
|
|
71
|
+
("lift")
|
|
72
|
+
("resultant")
|
|
73
|
+
("coef")
|
|
74
|
+
("liftstd")
|
|
75
|
+
("return")
|
|
76
|
+
("coeffs")
|
|
77
|
+
("link")
|
|
78
|
+
("ring")
|
|
79
|
+
("continue")
|
|
80
|
+
("list")
|
|
81
|
+
("ringlist")
|
|
82
|
+
("contract")
|
|
83
|
+
("listvar")
|
|
84
|
+
("rtimer")
|
|
85
|
+
("convhull")
|
|
86
|
+
("load")
|
|
87
|
+
("rvar")
|
|
88
|
+
("dbprint")
|
|
89
|
+
("lres")
|
|
90
|
+
("setring")
|
|
91
|
+
("def")
|
|
92
|
+
("ludecomp")
|
|
93
|
+
("short")
|
|
94
|
+
("defined")
|
|
95
|
+
("luinverse")
|
|
96
|
+
("simplex")
|
|
97
|
+
("deg")
|
|
98
|
+
("lusolve")
|
|
99
|
+
("simplify")
|
|
100
|
+
("degBound")
|
|
101
|
+
("map")
|
|
102
|
+
("size")
|
|
103
|
+
("degree")
|
|
104
|
+
("matrix")
|
|
105
|
+
("slimgb")
|
|
106
|
+
("delete")
|
|
107
|
+
("maxideal")
|
|
108
|
+
("sortvec")
|
|
109
|
+
("det")
|
|
110
|
+
("memory")
|
|
111
|
+
("sqrfree")
|
|
112
|
+
("diff")
|
|
113
|
+
("minbase")
|
|
114
|
+
("sres")
|
|
115
|
+
("dim")
|
|
116
|
+
("minor")
|
|
117
|
+
("status")
|
|
118
|
+
("div")
|
|
119
|
+
("minpoly")
|
|
120
|
+
("std")
|
|
121
|
+
("division")
|
|
122
|
+
("minres")
|
|
123
|
+
("string")
|
|
124
|
+
("dump")
|
|
125
|
+
("mod")
|
|
126
|
+
("subst")
|
|
127
|
+
("echo")
|
|
128
|
+
("module")
|
|
129
|
+
("system")
|
|
130
|
+
("eliminate")
|
|
131
|
+
("modulo")
|
|
132
|
+
("syz")
|
|
133
|
+
("else")
|
|
134
|
+
("monitor")
|
|
135
|
+
("test")
|
|
136
|
+
("envelope")
|
|
137
|
+
("monomial")
|
|
138
|
+
("timer")
|
|
139
|
+
("eval")
|
|
140
|
+
("mpresmat")
|
|
141
|
+
("trace")
|
|
142
|
+
("example")
|
|
143
|
+
("mres")
|
|
144
|
+
("transpose")
|
|
145
|
+
("execute")
|
|
146
|
+
("mstd")
|
|
147
|
+
("twostd")
|
|
148
|
+
("export")
|
|
149
|
+
("mult")
|
|
150
|
+
("type")
|
|
151
|
+
("exportto")
|
|
152
|
+
("multBound")
|
|
153
|
+
("typeof")
|
|
154
|
+
("extgcd")
|
|
155
|
+
("multiplicity")
|
|
156
|
+
("univariate")
|
|
157
|
+
("facstd")
|
|
158
|
+
("nameof")
|
|
159
|
+
("uressolve")
|
|
160
|
+
("factmodd")
|
|
161
|
+
("names")
|
|
162
|
+
("vandermonde")
|
|
163
|
+
("factorize")
|
|
164
|
+
("nc_algebra")
|
|
165
|
+
("var")
|
|
166
|
+
("farey")
|
|
167
|
+
("ncalgebra")
|
|
168
|
+
("variables")
|
|
169
|
+
("fetch")
|
|
170
|
+
("ncols")
|
|
171
|
+
("varstr")
|
|
172
|
+
("fglm")
|
|
173
|
+
("newstruct")
|
|
174
|
+
("vdim")
|
|
175
|
+
("fglmquot")
|
|
176
|
+
("noether")
|
|
177
|
+
("vector")
|
|
178
|
+
("find")
|
|
179
|
+
("not")
|
|
180
|
+
("verbose")
|
|
181
|
+
("finduni")
|
|
182
|
+
("npars")
|
|
183
|
+
("voice")
|
|
184
|
+
("forif")
|
|
185
|
+
("nres")
|
|
186
|
+
("waitall")
|
|
187
|
+
("freemodule")
|
|
188
|
+
("nrows")
|
|
189
|
+
("waitfirst")
|
|
190
|
+
("frwalk")
|
|
191
|
+
("number")
|
|
192
|
+
("wedge")
|
|
193
|
+
("gcd")
|
|
194
|
+
("nvars")
|
|
195
|
+
("weight")
|
|
196
|
+
("gen")
|
|
197
|
+
("open")
|
|
198
|
+
("whileif")
|
|
199
|
+
("getdump")
|
|
200
|
+
("oppose")
|
|
201
|
+
("write")
|
|
202
|
+
("highcorner")
|
|
203
|
+
("opposite")
|
|
204
|
+
("exit")
|
|
205
|
+
("hilb")
|
|
206
|
+
("option")
|
|
207
|
+
("for")
|
|
208
|
+
("homog")
|
|
209
|
+
("or")
|
|
210
|
+
("help")
|
|
211
|
+
("hres")
|
|
212
|
+
("ord")
|
|
213
|
+
("newline")
|
|
214
|
+
("ideal")
|
|
215
|
+
("ordstr")
|
|
216
|
+
("pause")
|
|
217
|
+
("if")
|
|
218
|
+
("package")
|
|
219
|
+
("quit")
|
|
220
|
+
("imap")
|
|
221
|
+
("pagewidth")
|
|
222
|
+
("while")
|
|
223
|
+
("impart")
|
|
224
|
+
("par")
|
|
225
|
+
("importfrom")
|
|
226
|
+
("parameter")
|
|
227
|
+
("indepSet")
|
|
228
|
+
("pardeg")
|
|
229
|
+
("type")
|
|
230
|
+
("3:")
|
|
231
|
+
("fan")
|
|
232
|
+
("type")
|
|
233
|
+
("2:")
|
|
234
|
+
("polytope")
|
|
235
|
+
("type")
|
|
236
|
+
("1:")
|
|
237
|
+
("cone")
|
|
238
|
+
("type")
|
|
239
|
+
("0:")
|
|
240
|
+
("pyobject")
|
|
241
|
+
))
|