passagemath-singular 10.6.31rc3__cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of passagemath-singular might be problematic. Click here for more details.

Files changed (491) hide show
  1. PySingular.cpython-314-x86_64-linux-gnu.so +0 -0
  2. passagemath_singular-10.6.31rc3.dist-info/METADATA +183 -0
  3. passagemath_singular-10.6.31rc3.dist-info/RECORD +491 -0
  4. passagemath_singular-10.6.31rc3.dist-info/WHEEL +6 -0
  5. passagemath_singular-10.6.31rc3.dist-info/top_level.txt +3 -0
  6. passagemath_singular.libs/libSingular-4-20aec911.4.1.so +0 -0
  7. passagemath_singular.libs/libcddgmp-21acf0c6.so.0.1.3 +0 -0
  8. passagemath_singular.libs/libfactory-4-fcee31da.4.1.so +0 -0
  9. passagemath_singular.libs/libflint-66e12231.so.21.0.0 +0 -0
  10. passagemath_singular.libs/libgf2x-a4cdec90.so.3.0.0 +0 -0
  11. passagemath_singular.libs/libgfortran-83c28eba.so.5.0.0 +0 -0
  12. passagemath_singular.libs/libgmp-6e109695.so.10.5.0 +0 -0
  13. passagemath_singular.libs/libgsl-cda90e79.so.28.0.0 +0 -0
  14. passagemath_singular.libs/libmpfr-82690d50.so.6.2.1 +0 -0
  15. passagemath_singular.libs/libntl-e6f0d543.so.44.0.1 +0 -0
  16. passagemath_singular.libs/libomalloc-0-5c9e866e.9.6.so +0 -0
  17. passagemath_singular.libs/libopenblasp-r0-6dcb67f9.3.29.so +0 -0
  18. passagemath_singular.libs/libpolys-4-5c0a87e0.4.1.so +0 -0
  19. passagemath_singular.libs/libquadmath-2284e583.so.0.0.0 +0 -0
  20. passagemath_singular.libs/libreadline-ea270e21.so.8.2 +0 -0
  21. passagemath_singular.libs/libsingular_resources-4-a1aafc6d.4.1.so +0 -0
  22. passagemath_singular.libs/libtinfo-ceb117d9.so.6.3 +0 -0
  23. sage/algebras/all__sagemath_singular.py +3 -0
  24. sage/algebras/fusion_rings/all.py +19 -0
  25. sage/algebras/fusion_rings/f_matrix.py +2448 -0
  26. sage/algebras/fusion_rings/fast_parallel_fmats_methods.cpython-314-x86_64-linux-gnu.so +0 -0
  27. sage/algebras/fusion_rings/fast_parallel_fmats_methods.pxd +5 -0
  28. sage/algebras/fusion_rings/fast_parallel_fmats_methods.pyx +538 -0
  29. sage/algebras/fusion_rings/fast_parallel_fusion_ring_braid_repn.cpython-314-x86_64-linux-gnu.so +0 -0
  30. sage/algebras/fusion_rings/fast_parallel_fusion_ring_braid_repn.pxd +3 -0
  31. sage/algebras/fusion_rings/fast_parallel_fusion_ring_braid_repn.pyx +331 -0
  32. sage/algebras/fusion_rings/fusion_double.py +899 -0
  33. sage/algebras/fusion_rings/fusion_ring.py +1580 -0
  34. sage/algebras/fusion_rings/poly_tup_engine.cpython-314-x86_64-linux-gnu.so +0 -0
  35. sage/algebras/fusion_rings/poly_tup_engine.pxd +24 -0
  36. sage/algebras/fusion_rings/poly_tup_engine.pyx +579 -0
  37. sage/algebras/fusion_rings/shm_managers.cpython-314-x86_64-linux-gnu.so +0 -0
  38. sage/algebras/fusion_rings/shm_managers.pxd +24 -0
  39. sage/algebras/fusion_rings/shm_managers.pyx +780 -0
  40. sage/algebras/letterplace/all.py +1 -0
  41. sage/algebras/letterplace/free_algebra_element_letterplace.cpython-314-x86_64-linux-gnu.so +0 -0
  42. sage/algebras/letterplace/free_algebra_element_letterplace.pxd +18 -0
  43. sage/algebras/letterplace/free_algebra_element_letterplace.pyx +755 -0
  44. sage/algebras/letterplace/free_algebra_letterplace.cpython-314-x86_64-linux-gnu.so +0 -0
  45. sage/algebras/letterplace/free_algebra_letterplace.pxd +35 -0
  46. sage/algebras/letterplace/free_algebra_letterplace.pyx +914 -0
  47. sage/algebras/letterplace/letterplace_ideal.cpython-314-x86_64-linux-gnu.so +0 -0
  48. sage/algebras/letterplace/letterplace_ideal.pyx +408 -0
  49. sage/algebras/quatalg/all.py +2 -0
  50. sage/algebras/quatalg/quaternion_algebra.py +4778 -0
  51. sage/algebras/quatalg/quaternion_algebra_cython.cpython-314-x86_64-linux-gnu.so +0 -0
  52. sage/algebras/quatalg/quaternion_algebra_cython.pyx +261 -0
  53. sage/algebras/quatalg/quaternion_algebra_element.cpython-314-x86_64-linux-gnu.so +0 -0
  54. sage/algebras/quatalg/quaternion_algebra_element.pxd +29 -0
  55. sage/algebras/quatalg/quaternion_algebra_element.pyx +2176 -0
  56. sage/all__sagemath_singular.py +11 -0
  57. sage/ext_data/all__sagemath_singular.py +1 -0
  58. sage/ext_data/singular/function_field/core.lib +98 -0
  59. sage/interfaces/all__sagemath_singular.py +1 -0
  60. sage/interfaces/singular.py +2835 -0
  61. sage/libs/all__sagemath_singular.py +1 -0
  62. sage/libs/singular/__init__.py +1 -0
  63. sage/libs/singular/decl.pxd +1168 -0
  64. sage/libs/singular/function.cpython-314-x86_64-linux-gnu.so +0 -0
  65. sage/libs/singular/function.pxd +87 -0
  66. sage/libs/singular/function.pyx +1901 -0
  67. sage/libs/singular/function_factory.py +61 -0
  68. sage/libs/singular/groebner_strategy.cpython-314-x86_64-linux-gnu.so +0 -0
  69. sage/libs/singular/groebner_strategy.pxd +22 -0
  70. sage/libs/singular/groebner_strategy.pyx +582 -0
  71. sage/libs/singular/option.cpython-314-x86_64-linux-gnu.so +0 -0
  72. sage/libs/singular/option.pyx +671 -0
  73. sage/libs/singular/polynomial.cpython-314-x86_64-linux-gnu.so +0 -0
  74. sage/libs/singular/polynomial.pxd +39 -0
  75. sage/libs/singular/polynomial.pyx +661 -0
  76. sage/libs/singular/ring.cpython-314-x86_64-linux-gnu.so +0 -0
  77. sage/libs/singular/ring.pxd +58 -0
  78. sage/libs/singular/ring.pyx +893 -0
  79. sage/libs/singular/singular.cpython-314-x86_64-linux-gnu.so +0 -0
  80. sage/libs/singular/singular.pxd +72 -0
  81. sage/libs/singular/singular.pyx +1944 -0
  82. sage/libs/singular/standard_options.py +145 -0
  83. sage/matrix/all__sagemath_singular.py +1 -0
  84. sage/matrix/matrix_mpolynomial_dense.cpython-314-x86_64-linux-gnu.so +0 -0
  85. sage/matrix/matrix_mpolynomial_dense.pxd +7 -0
  86. sage/matrix/matrix_mpolynomial_dense.pyx +615 -0
  87. sage/rings/all__sagemath_singular.py +1 -0
  88. sage/rings/function_field/all__sagemath_singular.py +1 -0
  89. sage/rings/function_field/derivations_polymod.py +911 -0
  90. sage/rings/function_field/element_polymod.cpython-314-x86_64-linux-gnu.so +0 -0
  91. sage/rings/function_field/element_polymod.pyx +406 -0
  92. sage/rings/function_field/function_field_polymod.py +2611 -0
  93. sage/rings/function_field/ideal_polymod.py +1775 -0
  94. sage/rings/function_field/order_polymod.py +1475 -0
  95. sage/rings/function_field/place_polymod.py +681 -0
  96. sage/rings/polynomial/all__sagemath_singular.py +1 -0
  97. sage/rings/polynomial/multi_polynomial_ideal_libsingular.cpython-314-x86_64-linux-gnu.so +0 -0
  98. sage/rings/polynomial/multi_polynomial_ideal_libsingular.pxd +5 -0
  99. sage/rings/polynomial/multi_polynomial_ideal_libsingular.pyx +339 -0
  100. sage/rings/polynomial/multi_polynomial_libsingular.cpython-314-x86_64-linux-gnu.so +0 -0
  101. sage/rings/polynomial/multi_polynomial_libsingular.pxd +30 -0
  102. sage/rings/polynomial/multi_polynomial_libsingular.pyx +6277 -0
  103. sage/rings/polynomial/plural.cpython-314-x86_64-linux-gnu.so +0 -0
  104. sage/rings/polynomial/plural.pxd +48 -0
  105. sage/rings/polynomial/plural.pyx +3171 -0
  106. sage/symbolic/all__sagemath_singular.py +1 -0
  107. sage/symbolic/comparison_impl.pxi +428 -0
  108. sage/symbolic/constants_c_impl.pxi +178 -0
  109. sage/symbolic/expression.cpython-314-x86_64-linux-gnu.so +0 -0
  110. sage/symbolic/expression.pxd +7 -0
  111. sage/symbolic/expression.pyx +14200 -0
  112. sage/symbolic/getitem_impl.pxi +202 -0
  113. sage/symbolic/pynac.pxi +572 -0
  114. sage/symbolic/pynac_constant_impl.pxi +133 -0
  115. sage/symbolic/pynac_function_impl.pxi +206 -0
  116. sage/symbolic/pynac_impl.pxi +2576 -0
  117. sage/symbolic/pynac_wrap.h +124 -0
  118. sage/symbolic/series_impl.pxi +272 -0
  119. sage/symbolic/substitution_map_impl.pxi +94 -0
  120. sage_wheels/bin/ESingular +0 -0
  121. sage_wheels/bin/Singular +0 -0
  122. sage_wheels/bin/TSingular +0 -0
  123. sage_wheels/lib/singular/MOD/cohomo.la +41 -0
  124. sage_wheels/lib/singular/MOD/cohomo.so +0 -0
  125. sage_wheels/lib/singular/MOD/customstd.la +41 -0
  126. sage_wheels/lib/singular/MOD/customstd.so +0 -0
  127. sage_wheels/lib/singular/MOD/freealgebra.la +41 -0
  128. sage_wheels/lib/singular/MOD/freealgebra.so +0 -0
  129. sage_wheels/lib/singular/MOD/gfanlib.la +41 -0
  130. sage_wheels/lib/singular/MOD/gfanlib.so +0 -0
  131. sage_wheels/lib/singular/MOD/gitfan.la +41 -0
  132. sage_wheels/lib/singular/MOD/gitfan.so +0 -0
  133. sage_wheels/lib/singular/MOD/interval.la +41 -0
  134. sage_wheels/lib/singular/MOD/interval.so +0 -0
  135. sage_wheels/lib/singular/MOD/loctriv.la +41 -0
  136. sage_wheels/lib/singular/MOD/loctriv.so +0 -0
  137. sage_wheels/lib/singular/MOD/machinelearning.la +41 -0
  138. sage_wheels/lib/singular/MOD/machinelearning.so +0 -0
  139. sage_wheels/lib/singular/MOD/p_Procs_FieldGeneral.la +41 -0
  140. sage_wheels/lib/singular/MOD/p_Procs_FieldGeneral.so +0 -0
  141. sage_wheels/lib/singular/MOD/p_Procs_FieldIndep.la +41 -0
  142. sage_wheels/lib/singular/MOD/p_Procs_FieldIndep.so +0 -0
  143. sage_wheels/lib/singular/MOD/p_Procs_FieldQ.la +41 -0
  144. sage_wheels/lib/singular/MOD/p_Procs_FieldQ.so +0 -0
  145. sage_wheels/lib/singular/MOD/p_Procs_FieldZp.la +41 -0
  146. sage_wheels/lib/singular/MOD/p_Procs_FieldZp.so +0 -0
  147. sage_wheels/lib/singular/MOD/partialgb.la +41 -0
  148. sage_wheels/lib/singular/MOD/partialgb.so +0 -0
  149. sage_wheels/lib/singular/MOD/pyobject.la +41 -0
  150. sage_wheels/lib/singular/MOD/pyobject.so +0 -0
  151. sage_wheels/lib/singular/MOD/singmathic.la +41 -0
  152. sage_wheels/lib/singular/MOD/singmathic.so +0 -0
  153. sage_wheels/lib/singular/MOD/sispasm.la +41 -0
  154. sage_wheels/lib/singular/MOD/sispasm.so +0 -0
  155. sage_wheels/lib/singular/MOD/subsets.la +41 -0
  156. sage_wheels/lib/singular/MOD/subsets.so +0 -0
  157. sage_wheels/lib/singular/MOD/systhreads.la +41 -0
  158. sage_wheels/lib/singular/MOD/systhreads.so +0 -0
  159. sage_wheels/lib/singular/MOD/syzextra.la +41 -0
  160. sage_wheels/lib/singular/MOD/syzextra.so +0 -0
  161. sage_wheels/libexec/singular/MOD/change_cost +0 -0
  162. sage_wheels/libexec/singular/MOD/singularsurf +11 -0
  163. sage_wheels/libexec/singular/MOD/singularsurf_jupyter +9 -0
  164. sage_wheels/libexec/singular/MOD/singularsurf_win +10 -0
  165. sage_wheels/libexec/singular/MOD/solve_IP +0 -0
  166. sage_wheels/libexec/singular/MOD/surfex +16 -0
  167. sage_wheels/libexec/singular/MOD/toric_ideal +0 -0
  168. sage_wheels/share/factory/gftables/10201 +342 -0
  169. sage_wheels/share/factory/gftables/1024 +37 -0
  170. sage_wheels/share/factory/gftables/10609 +356 -0
  171. sage_wheels/share/factory/gftables/11449 +384 -0
  172. sage_wheels/share/factory/gftables/11881 +398 -0
  173. sage_wheels/share/factory/gftables/121 +6 -0
  174. sage_wheels/share/factory/gftables/12167 +408 -0
  175. sage_wheels/share/factory/gftables/125 +7 -0
  176. sage_wheels/share/factory/gftables/12769 +428 -0
  177. sage_wheels/share/factory/gftables/128 +7 -0
  178. sage_wheels/share/factory/gftables/1331 +47 -0
  179. sage_wheels/share/factory/gftables/1369 +48 -0
  180. sage_wheels/share/factory/gftables/14641 +490 -0
  181. sage_wheels/share/factory/gftables/15625 +523 -0
  182. sage_wheels/share/factory/gftables/16 +3 -0
  183. sage_wheels/share/factory/gftables/16129 +540 -0
  184. sage_wheels/share/factory/gftables/16384 +549 -0
  185. sage_wheels/share/factory/gftables/16807 +563 -0
  186. sage_wheels/share/factory/gftables/1681 +58 -0
  187. sage_wheels/share/factory/gftables/169 +8 -0
  188. sage_wheels/share/factory/gftables/17161 +574 -0
  189. sage_wheels/share/factory/gftables/1849 +64 -0
  190. sage_wheels/share/factory/gftables/18769 +628 -0
  191. sage_wheels/share/factory/gftables/19321 +646 -0
  192. sage_wheels/share/factory/gftables/19683 +659 -0
  193. sage_wheels/share/factory/gftables/2048 +71 -0
  194. sage_wheels/share/factory/gftables/2187 +75 -0
  195. sage_wheels/share/factory/gftables/2197 +76 -0
  196. sage_wheels/share/factory/gftables/2209 +76 -0
  197. sage_wheels/share/factory/gftables/22201 +742 -0
  198. sage_wheels/share/factory/gftables/22801 +762 -0
  199. sage_wheels/share/factory/gftables/2401 +82 -0
  200. sage_wheels/share/factory/gftables/243 +11 -0
  201. sage_wheels/share/factory/gftables/24389 +815 -0
  202. sage_wheels/share/factory/gftables/24649 +824 -0
  203. sage_wheels/share/factory/gftables/25 +3 -0
  204. sage_wheels/share/factory/gftables/256 +11 -0
  205. sage_wheels/share/factory/gftables/26569 +888 -0
  206. sage_wheels/share/factory/gftables/27 +3 -0
  207. sage_wheels/share/factory/gftables/27889 +932 -0
  208. sage_wheels/share/factory/gftables/2809 +96 -0
  209. sage_wheels/share/factory/gftables/28561 +954 -0
  210. sage_wheels/share/factory/gftables/289 +12 -0
  211. sage_wheels/share/factory/gftables/29791 +995 -0
  212. sage_wheels/share/factory/gftables/29929 +1000 -0
  213. sage_wheels/share/factory/gftables/3125 +107 -0
  214. sage_wheels/share/factory/gftables/32 +4 -0
  215. sage_wheels/share/factory/gftables/32041 +1070 -0
  216. sage_wheels/share/factory/gftables/32761 +1094 -0
  217. sage_wheels/share/factory/gftables/32768 +1095 -0
  218. sage_wheels/share/factory/gftables/343 +14 -0
  219. sage_wheels/share/factory/gftables/3481 +118 -0
  220. sage_wheels/share/factory/gftables/361 +14 -0
  221. sage_wheels/share/factory/gftables/36481 +1218 -0
  222. sage_wheels/share/factory/gftables/3721 +126 -0
  223. sage_wheels/share/factory/gftables/37249 +1244 -0
  224. sage_wheels/share/factory/gftables/38809 +1296 -0
  225. sage_wheels/share/factory/gftables/39601 +1322 -0
  226. sage_wheels/share/factory/gftables/4 +3 -0
  227. sage_wheels/share/factory/gftables/4096 +139 -0
  228. sage_wheels/share/factory/gftables/44521 +1486 -0
  229. sage_wheels/share/factory/gftables/4489 +152 -0
  230. sage_wheels/share/factory/gftables/49 +4 -0
  231. sage_wheels/share/factory/gftables/4913 +166 -0
  232. sage_wheels/share/factory/gftables/49729 +1660 -0
  233. sage_wheels/share/factory/gftables/5041 +170 -0
  234. sage_wheels/share/factory/gftables/50653 +1691 -0
  235. sage_wheels/share/factory/gftables/512 +20 -0
  236. sage_wheels/share/factory/gftables/51529 +1720 -0
  237. sage_wheels/share/factory/gftables/52441 +1750 -0
  238. sage_wheels/share/factory/gftables/529 +20 -0
  239. sage_wheels/share/factory/gftables/5329 +180 -0
  240. sage_wheels/share/factory/gftables/54289 +1812 -0
  241. sage_wheels/share/factory/gftables/57121 +1906 -0
  242. sage_wheels/share/factory/gftables/58081 +1938 -0
  243. sage_wheels/share/factory/gftables/59049 +1971 -0
  244. sage_wheels/share/factory/gftables/6241 +210 -0
  245. sage_wheels/share/factory/gftables/625 +23 -0
  246. sage_wheels/share/factory/gftables/63001 +2102 -0
  247. sage_wheels/share/factory/gftables/64 +5 -0
  248. sage_wheels/share/factory/gftables/6561 +221 -0
  249. sage_wheels/share/factory/gftables/6859 +231 -0
  250. sage_wheels/share/factory/gftables/6889 +232 -0
  251. sage_wheels/share/factory/gftables/729 +27 -0
  252. sage_wheels/share/factory/gftables/7921 +266 -0
  253. sage_wheels/share/factory/gftables/8 +3 -0
  254. sage_wheels/share/factory/gftables/81 +5 -0
  255. sage_wheels/share/factory/gftables/8192 +276 -0
  256. sage_wheels/share/factory/gftables/841 +30 -0
  257. sage_wheels/share/factory/gftables/9 +3 -0
  258. sage_wheels/share/factory/gftables/9409 +316 -0
  259. sage_wheels/share/factory/gftables/961 +34 -0
  260. sage_wheels/share/info/singular.info +191898 -0
  261. sage_wheels/share/singular/LIB/GND.lib +1359 -0
  262. sage_wheels/share/singular/LIB/JMBTest.lib +976 -0
  263. sage_wheels/share/singular/LIB/JMSConst.lib +1363 -0
  264. sage_wheels/share/singular/LIB/KVequiv.lib +699 -0
  265. sage_wheels/share/singular/LIB/SingularityDBM.lib +491 -0
  266. sage_wheels/share/singular/LIB/VecField.lib +1542 -0
  267. sage_wheels/share/singular/LIB/absfact.lib +959 -0
  268. sage_wheels/share/singular/LIB/ainvar.lib +730 -0
  269. sage_wheels/share/singular/LIB/aksaka.lib +419 -0
  270. sage_wheels/share/singular/LIB/alexpoly.lib +2542 -0
  271. sage_wheels/share/singular/LIB/algebra.lib +1193 -0
  272. sage_wheels/share/singular/LIB/all.lib +136 -0
  273. sage_wheels/share/singular/LIB/arcpoint.lib +514 -0
  274. sage_wheels/share/singular/LIB/arnold.lib +4553 -0
  275. sage_wheels/share/singular/LIB/arnoldclassify.lib +2058 -0
  276. sage_wheels/share/singular/LIB/arr.lib +3486 -0
  277. sage_wheels/share/singular/LIB/assprimeszerodim.lib +755 -0
  278. sage_wheels/share/singular/LIB/autgradalg.lib +3361 -0
  279. sage_wheels/share/singular/LIB/bfun.lib +1964 -0
  280. sage_wheels/share/singular/LIB/bimodules.lib +774 -0
  281. sage_wheels/share/singular/LIB/brillnoether.lib +226 -0
  282. sage_wheels/share/singular/LIB/brnoeth.lib +5017 -0
  283. sage_wheels/share/singular/LIB/central.lib +2169 -0
  284. sage_wheels/share/singular/LIB/chern.lib +4162 -0
  285. sage_wheels/share/singular/LIB/cimonom.lib +571 -0
  286. sage_wheels/share/singular/LIB/cisimplicial.lib +1835 -0
  287. sage_wheels/share/singular/LIB/classify.lib +3239 -0
  288. sage_wheels/share/singular/LIB/classify2.lib +1462 -0
  289. sage_wheels/share/singular/LIB/classifyMapGerms.lib +1515 -0
  290. sage_wheels/share/singular/LIB/classify_aeq.lib +3253 -0
  291. sage_wheels/share/singular/LIB/classifyceq.lib +2092 -0
  292. sage_wheels/share/singular/LIB/classifyci.lib +1133 -0
  293. sage_wheels/share/singular/LIB/combinat.lib +91 -0
  294. sage_wheels/share/singular/LIB/compregb.lib +276 -0
  295. sage_wheels/share/singular/LIB/control.lib +1636 -0
  296. sage_wheels/share/singular/LIB/crypto.lib +3795 -0
  297. sage_wheels/share/singular/LIB/curveInv.lib +667 -0
  298. sage_wheels/share/singular/LIB/curvepar.lib +1817 -0
  299. sage_wheels/share/singular/LIB/customstd.lib +100 -0
  300. sage_wheels/share/singular/LIB/deRham.lib +5979 -0
  301. sage_wheels/share/singular/LIB/decodegb.lib +2134 -0
  302. sage_wheels/share/singular/LIB/decomp.lib +1655 -0
  303. sage_wheels/share/singular/LIB/deflation.lib +872 -0
  304. sage_wheels/share/singular/LIB/deform.lib +925 -0
  305. sage_wheels/share/singular/LIB/difform.lib +3055 -0
  306. sage_wheels/share/singular/LIB/divisors.lib +750 -0
  307. sage_wheels/share/singular/LIB/dmod.lib +5817 -0
  308. sage_wheels/share/singular/LIB/dmodapp.lib +3269 -0
  309. sage_wheels/share/singular/LIB/dmodideal.lib +1211 -0
  310. sage_wheels/share/singular/LIB/dmodloc.lib +2645 -0
  311. sage_wheels/share/singular/LIB/dmodvar.lib +818 -0
  312. sage_wheels/share/singular/LIB/dummy.lib +17 -0
  313. sage_wheels/share/singular/LIB/elim.lib +1009 -0
  314. sage_wheels/share/singular/LIB/ellipticcovers.lib +548 -0
  315. sage_wheels/share/singular/LIB/enumpoints.lib +146 -0
  316. sage_wheels/share/singular/LIB/equising.lib +2127 -0
  317. sage_wheels/share/singular/LIB/ffmodstd.lib +2384 -0
  318. sage_wheels/share/singular/LIB/ffsolve.lib +1289 -0
  319. sage_wheels/share/singular/LIB/findifs.lib +778 -0
  320. sage_wheels/share/singular/LIB/finitediff.lib +1768 -0
  321. sage_wheels/share/singular/LIB/finvar.lib +7989 -0
  322. sage_wheels/share/singular/LIB/fpadim.lib +2429 -0
  323. sage_wheels/share/singular/LIB/fpalgebras.lib +1666 -0
  324. sage_wheels/share/singular/LIB/fpaprops.lib +1462 -0
  325. sage_wheels/share/singular/LIB/freegb.lib +3853 -0
  326. sage_wheels/share/singular/LIB/general.lib +1350 -0
  327. sage_wheels/share/singular/LIB/gfan.lib +1768 -0
  328. sage_wheels/share/singular/LIB/gitfan.lib +3130 -0
  329. sage_wheels/share/singular/LIB/gkdim.lib +99 -0
  330. sage_wheels/share/singular/LIB/gmspoly.lib +589 -0
  331. sage_wheels/share/singular/LIB/gmssing.lib +1739 -0
  332. sage_wheels/share/singular/LIB/goettsche.lib +909 -0
  333. sage_wheels/share/singular/LIB/graal.lib +1366 -0
  334. sage_wheels/share/singular/LIB/gradedModules.lib +2541 -0
  335. sage_wheels/share/singular/LIB/graphics.lib +360 -0
  336. sage_wheels/share/singular/LIB/grobcov.lib +7706 -0
  337. sage_wheels/share/singular/LIB/groups.lib +1123 -0
  338. sage_wheels/share/singular/LIB/grwalk.lib +507 -0
  339. sage_wheels/share/singular/LIB/hdepth.lib +194 -0
  340. sage_wheels/share/singular/LIB/help.cnf +57 -0
  341. sage_wheels/share/singular/LIB/hess.lib +1946 -0
  342. sage_wheels/share/singular/LIB/hnoether.lib +4292 -0
  343. sage_wheels/share/singular/LIB/hodge.lib +400 -0
  344. sage_wheels/share/singular/LIB/homolog.lib +1965 -0
  345. sage_wheels/share/singular/LIB/hyperel.lib +975 -0
  346. sage_wheels/share/singular/LIB/inout.lib +679 -0
  347. sage_wheels/share/singular/LIB/integralbasis.lib +6224 -0
  348. sage_wheels/share/singular/LIB/interval.lib +1418 -0
  349. sage_wheels/share/singular/LIB/intprog.lib +778 -0
  350. sage_wheels/share/singular/LIB/invar.lib +443 -0
  351. sage_wheels/share/singular/LIB/involut.lib +980 -0
  352. sage_wheels/share/singular/LIB/jacobson.lib +1215 -0
  353. sage_wheels/share/singular/LIB/kskernel.lib +534 -0
  354. sage_wheels/share/singular/LIB/latex.lib +3146 -0
  355. sage_wheels/share/singular/LIB/lejeune.lib +651 -0
  356. sage_wheels/share/singular/LIB/linalg.lib +2040 -0
  357. sage_wheels/share/singular/LIB/locnormal.lib +212 -0
  358. sage_wheels/share/singular/LIB/lrcalc.lib +526 -0
  359. sage_wheels/share/singular/LIB/makedbm.lib +294 -0
  360. sage_wheels/share/singular/LIB/mathml.lib +813 -0
  361. sage_wheels/share/singular/LIB/matrix.lib +1372 -0
  362. sage_wheels/share/singular/LIB/maxlike.lib +1132 -0
  363. sage_wheels/share/singular/LIB/methods.lib +212 -0
  364. sage_wheels/share/singular/LIB/moddiq.lib +322 -0
  365. sage_wheels/share/singular/LIB/modfinduni.lib +181 -0
  366. sage_wheels/share/singular/LIB/modnormal.lib +218 -0
  367. sage_wheels/share/singular/LIB/modprimdec.lib +1278 -0
  368. sage_wheels/share/singular/LIB/modquotient.lib +269 -0
  369. sage_wheels/share/singular/LIB/modstd.lib +1024 -0
  370. sage_wheels/share/singular/LIB/modular.lib +545 -0
  371. sage_wheels/share/singular/LIB/modules.lib +2561 -0
  372. sage_wheels/share/singular/LIB/modwalk.lib +609 -0
  373. sage_wheels/share/singular/LIB/mondromy.lib +1016 -0
  374. sage_wheels/share/singular/LIB/monomialideal.lib +3851 -0
  375. sage_wheels/share/singular/LIB/mprimdec.lib +2353 -0
  376. sage_wheels/share/singular/LIB/mregular.lib +1863 -0
  377. sage_wheels/share/singular/LIB/multigrading.lib +5629 -0
  378. sage_wheels/share/singular/LIB/ncHilb.lib +777 -0
  379. sage_wheels/share/singular/LIB/ncModslimgb.lib +791 -0
  380. sage_wheels/share/singular/LIB/ncalg.lib +16311 -0
  381. sage_wheels/share/singular/LIB/ncall.lib +31 -0
  382. sage_wheels/share/singular/LIB/ncdecomp.lib +468 -0
  383. sage_wheels/share/singular/LIB/ncfactor.lib +13371 -0
  384. sage_wheels/share/singular/LIB/ncfrac.lib +1023 -0
  385. sage_wheels/share/singular/LIB/nchilbert.lib +448 -0
  386. sage_wheels/share/singular/LIB/nchomolog.lib +759 -0
  387. sage_wheels/share/singular/LIB/ncloc.lib +361 -0
  388. sage_wheels/share/singular/LIB/ncpreim.lib +795 -0
  389. sage_wheels/share/singular/LIB/ncrat.lib +2849 -0
  390. sage_wheels/share/singular/LIB/nctools.lib +1887 -0
  391. sage_wheels/share/singular/LIB/nets.lib +1456 -0
  392. sage_wheels/share/singular/LIB/nfmodstd.lib +1000 -0
  393. sage_wheels/share/singular/LIB/nfmodsyz.lib +732 -0
  394. sage_wheels/share/singular/LIB/noether.lib +1106 -0
  395. sage_wheels/share/singular/LIB/normal.lib +8700 -0
  396. sage_wheels/share/singular/LIB/normaliz.lib +2226 -0
  397. sage_wheels/share/singular/LIB/ntsolve.lib +362 -0
  398. sage_wheels/share/singular/LIB/numerAlg.lib +560 -0
  399. sage_wheels/share/singular/LIB/numerDecom.lib +2261 -0
  400. sage_wheels/share/singular/LIB/olga.lib +1933 -0
  401. sage_wheels/share/singular/LIB/orbitparam.lib +351 -0
  402. sage_wheels/share/singular/LIB/parallel.lib +319 -0
  403. sage_wheels/share/singular/LIB/paraplanecurves.lib +3110 -0
  404. sage_wheels/share/singular/LIB/perron.lib +202 -0
  405. sage_wheels/share/singular/LIB/pfd.lib +2223 -0
  406. sage_wheels/share/singular/LIB/phindex.lib +642 -0
  407. sage_wheels/share/singular/LIB/pointid.lib +673 -0
  408. sage_wheels/share/singular/LIB/polybori.lib +1430 -0
  409. sage_wheels/share/singular/LIB/polyclass.lib +525 -0
  410. sage_wheels/share/singular/LIB/polylib.lib +1174 -0
  411. sage_wheels/share/singular/LIB/polymake.lib +1902 -0
  412. sage_wheels/share/singular/LIB/presolve.lib +1533 -0
  413. sage_wheels/share/singular/LIB/primdec.lib +9576 -0
  414. sage_wheels/share/singular/LIB/primdecint.lib +1782 -0
  415. sage_wheels/share/singular/LIB/primitiv.lib +401 -0
  416. sage_wheels/share/singular/LIB/puiseuxexpansions.lib +1631 -0
  417. sage_wheels/share/singular/LIB/purityfiltration.lib +960 -0
  418. sage_wheels/share/singular/LIB/qhmoduli.lib +1561 -0
  419. sage_wheels/share/singular/LIB/qmatrix.lib +293 -0
  420. sage_wheels/share/singular/LIB/random.lib +455 -0
  421. sage_wheels/share/singular/LIB/ratgb.lib +489 -0
  422. sage_wheels/share/singular/LIB/realclassify.lib +5759 -0
  423. sage_wheels/share/singular/LIB/realizationMatroids.lib +772 -0
  424. sage_wheels/share/singular/LIB/realrad.lib +1197 -0
  425. sage_wheels/share/singular/LIB/recover.lib +2628 -0
  426. sage_wheels/share/singular/LIB/redcgs.lib +3984 -0
  427. sage_wheels/share/singular/LIB/reesclos.lib +465 -0
  428. sage_wheels/share/singular/LIB/resbinomial.lib +2802 -0
  429. sage_wheels/share/singular/LIB/resgraph.lib +789 -0
  430. sage_wheels/share/singular/LIB/resjung.lib +820 -0
  431. sage_wheels/share/singular/LIB/resolve.lib +5110 -0
  432. sage_wheels/share/singular/LIB/resources.lib +170 -0
  433. sage_wheels/share/singular/LIB/reszeta.lib +5473 -0
  434. sage_wheels/share/singular/LIB/ring.lib +1328 -0
  435. sage_wheels/share/singular/LIB/ringgb.lib +343 -0
  436. sage_wheels/share/singular/LIB/rinvar.lib +1153 -0
  437. sage_wheels/share/singular/LIB/rootisolation.lib +1481 -0
  438. sage_wheels/share/singular/LIB/rootsmr.lib +709 -0
  439. sage_wheels/share/singular/LIB/rootsur.lib +886 -0
  440. sage_wheels/share/singular/LIB/rstandard.lib +607 -0
  441. sage_wheels/share/singular/LIB/rwalk.lib +336 -0
  442. sage_wheels/share/singular/LIB/sagbi.lib +1353 -0
  443. sage_wheels/share/singular/LIB/sagbiNormaliz.lib +1622 -0
  444. sage_wheels/share/singular/LIB/sagbiNormaliz0.lib +1498 -0
  445. sage_wheels/share/singular/LIB/sagbigrob.lib +449 -0
  446. sage_wheels/share/singular/LIB/schreyer.lib +321 -0
  447. sage_wheels/share/singular/LIB/schubert.lib +2551 -0
  448. sage_wheels/share/singular/LIB/sets.lib +524 -0
  449. sage_wheels/share/singular/LIB/sheafcoh.lib +1663 -0
  450. sage_wheels/share/singular/LIB/signcond.lib +437 -0
  451. sage_wheels/share/singular/LIB/sing.lib +1094 -0
  452. sage_wheels/share/singular/LIB/sing4ti2.lib +419 -0
  453. sage_wheels/share/singular/LIB/solve.lib +2243 -0
  454. sage_wheels/share/singular/LIB/spcurve.lib +1077 -0
  455. sage_wheels/share/singular/LIB/spectrum.lib +62 -0
  456. sage_wheels/share/singular/LIB/sresext.lib +757 -0
  457. sage_wheels/share/singular/LIB/ssi.lib +143 -0
  458. sage_wheels/share/singular/LIB/standard.lib +2769 -0
  459. sage_wheels/share/singular/LIB/stanleyreisner.lib +473 -0
  460. sage_wheels/share/singular/LIB/stdmodule.lib +547 -0
  461. sage_wheels/share/singular/LIB/stratify.lib +1070 -0
  462. sage_wheels/share/singular/LIB/surf.lib +506 -0
  463. sage_wheels/share/singular/LIB/surf_jupyter.lib +223 -0
  464. sage_wheels/share/singular/LIB/surfacesignature.lib +522 -0
  465. sage_wheels/share/singular/LIB/surfex.lib +1462 -0
  466. sage_wheels/share/singular/LIB/swalk.lib +877 -0
  467. sage_wheels/share/singular/LIB/symodstd.lib +1570 -0
  468. sage_wheels/share/singular/LIB/systhreads.lib +74 -0
  469. sage_wheels/share/singular/LIB/tasks.lib +1324 -0
  470. sage_wheels/share/singular/LIB/tateProdCplxNegGrad.lib +2412 -0
  471. sage_wheels/share/singular/LIB/teachstd.lib +858 -0
  472. sage_wheels/share/singular/LIB/template.lib +116 -0
  473. sage_wheels/share/singular/LIB/toric.lib +1119 -0
  474. sage_wheels/share/singular/LIB/transformation.lib +116 -0
  475. sage_wheels/share/singular/LIB/triang.lib +1197 -0
  476. sage_wheels/share/singular/LIB/tropical.lib +8741 -0
  477. sage_wheels/share/singular/LIB/tropicalEllipticCovers.lib +2922 -0
  478. sage_wheels/share/singular/LIB/tropicalNewton.lib +1128 -0
  479. sage_wheels/share/singular/LIB/tst.lib +1108 -0
  480. sage_wheels/share/singular/LIB/weierstr.lib +241 -0
  481. sage_wheels/share/singular/LIB/zeroset.lib +1478 -0
  482. sage_wheels/share/singular/emacs/.emacs-general +184 -0
  483. sage_wheels/share/singular/emacs/.emacs-singular +234 -0
  484. sage_wheels/share/singular/emacs/COPYING +44 -0
  485. sage_wheels/share/singular/emacs/cmd-cmpl.el +241 -0
  486. sage_wheels/share/singular/emacs/ex-cmpl.el +1681 -0
  487. sage_wheels/share/singular/emacs/hlp-cmpl.el +4318 -0
  488. sage_wheels/share/singular/emacs/lib-cmpl.el +179 -0
  489. sage_wheels/share/singular/emacs/singular.el +4273 -0
  490. sage_wheels/share/singular/emacs/singular.xpm +39 -0
  491. sage_wheels/share/singular/singular.idx +5002 -0
@@ -0,0 +1,99 @@
1
+ //////////////////////////////////////////////////////////////////////////////
2
+ version="version gkdim.lib 4.1.2.0 Feb_2019 "; // $Id: 540318d50e65eece1607f62057ea6e117eaaf66d $
3
+ category="Noncommutative";
4
+ info="
5
+ LIBRARY: gkdim.lib Procedures for calculating the Gelfand-Kirillov dimension
6
+ AUTHORS: Lobillo, F.J., jlobillo@ugr.es
7
+ @* Rabelo, C., crabelo@ugr.es
8
+
9
+ Support: 'Metodos algebraicos y efectivos en grupos cuanticos', BFM2001-3141, MCYT, Jose Gomez-Torrecillas (Main researcher).
10
+
11
+ NOTE: The built-in command @code{dim}, executed for a module in @plural, computes the Gelfand-Kirillov dimension.
12
+
13
+ PROCEDURES:
14
+ GKdim(M); Gelfand-Kirillov dimension computation of the factor-module, whose presentation is given by the matrix M.
15
+ ";
16
+
17
+ ///////////////////////////////////////////////////////////////////////////////////
18
+ static proc idGKdim(ideal I)
19
+ "USAGE: idGKdim(I), I is a left ideal
20
+ RETURN: int, the Gelfand-Kirillov dimension of the R/I
21
+ NOTE: uses the dim procedure, if the factor-module is zero, -1 is returned
22
+ "
23
+ {
24
+ if (attrib(I,"isSB")<>1)
25
+ {
26
+ I=std(I);
27
+ }
28
+
29
+ int d = dim(I);
30
+ // if (d==-1) {d++;} // The GK-dimension of a finite dimensional module is zero
31
+ // levandov: but for consistency, GKdim(std(1)) == -1,
32
+ // mimicking the behaviour of dim() procedure.
33
+ return (d);
34
+ }
35
+
36
+ ///////////////////////////////////////////////////////////////////////////////
37
+ proc GKdim(list L)
38
+ "USAGE: GKdim(L); L is a left ideal/module/matrix
39
+ RETURN: int
40
+ PURPOSE: compute the Gelfand-Kirillov dimension of the factor-module, whose presentation is given by L, e.g. R^r/L
41
+ NOTE: if the factor-module is zero, -1 is returned
42
+ EXAMPLE: example GKdim; shows examples
43
+ "
44
+ {
45
+ def M = L[1];
46
+ int d = -1;
47
+ if (typeof(M)=="ideal")
48
+ {
49
+ d=idGKdim(M);
50
+ }
51
+ else
52
+ {
53
+ if (typeof(M)=="matrix")
54
+ {
55
+ module N = module(M);
56
+ kill M;
57
+ module M = N;
58
+ }
59
+ if (typeof(M)=="module")
60
+ {
61
+ if (attrib(M,"isSB")<>1)
62
+ {
63
+ M=std(M);
64
+ }
65
+ d=dim(M);
66
+ }
67
+ else
68
+ {
69
+ ERROR("The input must be an ideal, a module or a matrix.");
70
+ }
71
+ }
72
+ return (d);
73
+ }
74
+ example
75
+ {
76
+ "EXAMPLE:";echo=2;
77
+ ring R = 0,(x,y,z),Dp;
78
+ matrix C[3][3]=0,1,1,0,0,-1,0,0,0;
79
+ matrix D[3][3]=0,0,0,0,0,x;
80
+ def r = nc_algebra(C,D); setring r;
81
+ r;
82
+ ideal I=x;
83
+ GKdim(I);
84
+ ideal J=x2,y;
85
+ GKdim(J);
86
+ module M=[x2,y,1],[x,y2,0];
87
+ GKdim(M);
88
+ ideal A = x,y,z;
89
+ GKdim(A);
90
+ ideal B = 1;
91
+ GKdim(B);
92
+ GKdim(ideal(0)) == nvars(basering); // should be true, i.e., evaluated to 1
93
+ }
94
+ ///////////////////////////////////////////////////////////////////////////////
95
+ proc gkdim(list L)
96
+ {
97
+ return(GKdim(L));
98
+ }
99
+ ///////////////////////////////////////////////////////////////////////////////
@@ -0,0 +1,589 @@
1
+ //////////////////////////////////////////////////////////////////////////////
2
+ version="version gmspoly.lib 4.1.2.0 Feb_2019 "; // $Id: b27adbe7809d78a2fbdb3361179238f229630648 $
3
+ category="Singularities";
4
+
5
+ info="
6
+ LIBRARY: gmspoly.lib Gauss-Manin System of Tame Polynomials
7
+
8
+ AUTHOR: Mathias Schulze, mschulze at mathematik.uni-kl.de
9
+
10
+ OVERVIEW:
11
+ A library for computing the Gauss-Manin system of a cohomologically tame
12
+ polynomial f. Schulze's algorithm [Sch05], based on Sabbah's theory [Sab98],
13
+ is used to compute a good basis of (the Brieskorn lattice of) the Gauss-Manin system and the differential operation of f in terms of this basis.
14
+ In addition, there is a test for tameness in the sense of Broughton.
15
+ Tame polynomials can be considered as an affine algebraic analogue of local
16
+ analytic isolated hypersurface singularities. They have only finitely many
17
+ citical points, and those at infinity do not give rise to atypical values
18
+ in a sense depending on the precise notion of tameness considered. Well-known
19
+ notions of tameness like tameness, M-tameness, Malgrange-tameness, and
20
+ cohomological tameness, and their relations, are reviewed in [Sab98,8].
21
+ For ordinary tameness, see Broughton [Bro88,3].
22
+ Sabbah [Sab98] showed that the Gauss-Manin system, the D-module direct image
23
+ of the structure sheaf, of a cohomologically tame polynomial carries a
24
+ similar structure as in the isolated singularity case, coming from a Mixed
25
+ Hodge structure on the cohomology of the Milnor (typical) fibre (see
26
+ gmssing.lib). The data computed by this library encodes the differential structure of the Gauss-Manin system, and the Mixed Hodge structure of the Milnor fibre over the complex numbers. As a consequence, it yields the Hodge numbers, spectral pairs, and monodromy at infinity.
27
+
28
+ REFERENCES:
29
+ [Bro88] S. Broughton: Milnor numbers and the topology of polynomial
30
+ hypersurfaces. Inv. Math. 92 (1988) 217-241.
31
+ [Sab98] C. Sabbah: Hypergeometric periods for a tame polynomial.
32
+ arXiv.org math.AG/9805077.
33
+ [Sch05] M. Schulze: Good bases for tame polynomials.
34
+ J. Symb. Comp. 39,1 (2005), 103-126.
35
+
36
+ PROCEDURES:
37
+ isTame(f); test whether the polynomial f is tame
38
+ goodBasis(f); good basis of Brieskorn lattice of cohom. tame polynomial f
39
+
40
+ SEE ALSO: gmssing_lib
41
+
42
+ KEYWORDS: tame polynomial; Gauss-Manin system; Brieskorn lattice;
43
+ mixed Hodge structure; V-filtration; weight filtration;
44
+ monodromy; spectrum; spectral pairs; good basis
45
+ ";
46
+
47
+ LIB "linalg.lib";
48
+ LIB "ring.lib";
49
+
50
+ ///////////////////////////////////////////////////////////////////////////////
51
+
52
+ static proc mindegree(matrix A)
53
+ {
54
+ int d=0;
55
+
56
+ while(A/var(1)^(d+1)*var(1)^(d+1)==A)
57
+ {
58
+ d++;
59
+ }
60
+
61
+ return(d);
62
+ }
63
+ ///////////////////////////////////////////////////////////////////////////////
64
+
65
+ static proc maxdegree(matrix A)
66
+ {
67
+ int d=0;
68
+ matrix N[nrows(A)][ncols(A)];
69
+
70
+ while(A/var(1)^(d+1)!=N)
71
+ {
72
+ d++;
73
+ }
74
+
75
+ return(d);
76
+ }
77
+ ///////////////////////////////////////////////////////////////////////////////
78
+
79
+ proc isTame(poly f)
80
+ "USAGE: isTame(f); poly f
81
+ ASSUME: basering has no variables named w(1),w(2),...
82
+ RETURN:
83
+ @format
84
+ int k=
85
+ 1; if f is tame in the sense of Broughton [Bro88,3]
86
+ 0; if f is not tame
87
+ @end format
88
+ REMARKS: procedure implements Proposition 3.1 in [Bro88]
89
+ KEYWORDS: tame polynomial
90
+ EXAMPLE: example isTame; shows examples
91
+ "
92
+ {
93
+ int d=vdim(std(jacob(f)));
94
+ def @X=basering;
95
+ int n=nvars(@X);
96
+ ring ext_ring=0,(w(1..n)),dp;
97
+ setring @X;
98
+ def @WX=changechar(ringlist(ext_ring));
99
+ setring @WX;
100
+ kill ext_ring;
101
+ ideal J=jacob(imap(@X,f));
102
+ int i;
103
+ for(i=1;i<=n;i++)
104
+ {
105
+ J[i]=J[i]+w(i);
106
+ }
107
+ int D=vdim(std(J));
108
+
109
+ setring(@X);
110
+ kill @WX;
111
+
112
+ return(d>0&&d==D);
113
+ }
114
+ example
115
+ { "EXAMPLE:"; echo=2;
116
+ ring R=0,(x,y),dp;
117
+ isTame(x2y+x);
118
+ isTame(x3+y3+xy);
119
+ }
120
+ ///////////////////////////////////////////////////////////////////////////////
121
+
122
+ static proc chart(matrix A)
123
+ {
124
+ A=ideal(homog(transpose(ideal(A)),var(2)));
125
+ def r=basering;
126
+ map h=r,1,var(1);
127
+ return(h(A));
128
+ }
129
+ ///////////////////////////////////////////////////////////////////////////////
130
+
131
+ static proc pidbasis(module M0,module M)
132
+ {
133
+ int m=nrows(M);
134
+ int n=ncols(M);
135
+
136
+ module L,N;
137
+ module T=freemodule(m);
138
+ while(matrix(L)!=matrix(M))
139
+ {
140
+ L=M;
141
+
142
+ M=T,M;
143
+ N=transpose(std(transpose(M)));
144
+ T=N[1..m];
145
+ M=N[m+1..ncols(N)];
146
+
147
+ M=freemodule(n),transpose(M);
148
+ N=std(transpose(M));
149
+ N=transpose(simplify(N,1));
150
+ M=N[n+1..ncols(N)];
151
+ M=transpose(M);
152
+ }
153
+
154
+ if(maxdegree(M)>0)
155
+ {
156
+ print(" ? module not free");
157
+ return(module());
158
+ }
159
+
160
+ attrib(M,"isSB",1);
161
+ N=lift(T,simplify(reduce(M0,M),2));
162
+
163
+ return(N);
164
+ }
165
+ ///////////////////////////////////////////////////////////////////////////////
166
+
167
+ static proc vfiltmat(matrix B,int d)
168
+ {
169
+ int mu=ncols(B);
170
+
171
+ module V=freemodule(mu);
172
+ module V0=var(1)^(d-1)*freemodule(mu);
173
+ attrib(V0,"isSB",1);
174
+ module V1=B;
175
+ option(redSB);
176
+ while(size(reduce(V1,V0,5))>0)
177
+ {
178
+ V=std(V0+V1);
179
+ V0=var(1)^(d-1)*V;
180
+ attrib(V0,"isSB",1);
181
+ V1=B*matrix(V1)-var(1)^d*diff(matrix(V1),var(1));
182
+ }
183
+ option(noredSB);
184
+
185
+ B=lift(V0,B*matrix(V)-var(1)^d*diff(matrix(V),var(1)));
186
+ list l=eigenvals(B);
187
+ def e0,s0=l[1..2];
188
+
189
+ module U;
190
+ int i,j,i0,j0,i1,j1,k;
191
+ for(k=int(e0[ncols(e0)]-e0[1]);k>=1;k--)
192
+ {
193
+ U=0;
194
+ for(i=1;i<=ncols(e0);i++)
195
+ {
196
+ U=U+syz(power(jet(B,0)-e0[i],s0[i]));
197
+ }
198
+ B=lift(U,B*U);
199
+ V=matrix(V)*matrix(U);
200
+
201
+ for(i0,i=1,1;i0<=ncols(e0);i0++)
202
+ {
203
+ for(i1=1;i1<=s0[i0];i1,i=i1+1,i+1)
204
+ {
205
+ for(j0,j=1,1;j0<=ncols(e0);j0++)
206
+ {
207
+ for(j1=1;j1<=s0[j0];j1,j=j1+1,j+1)
208
+ {
209
+ if(leadcoef(e0[i0]-e0[1])>=1&&leadcoef(e0[j0]-e0[1])<1)
210
+ {
211
+ B[i,j]=B[i,j]/var(1);
212
+ }
213
+ if(leadcoef(e0[i0]-e0[1])<1&&leadcoef(e0[j0]-e0[1])>=1)
214
+ {
215
+ B[i,j]=B[i,j]*var(1);
216
+ }
217
+ }
218
+ }
219
+ }
220
+ }
221
+
222
+ for(i0,i=1,1;i0<=ncols(e0);i0++)
223
+ {
224
+ if(leadcoef(e0[i0]-e0[1])>=1)
225
+ {
226
+ for(i1=1;i1<=s0[i0];i1,i=i1+1,i+1)
227
+ {
228
+ B[i,i]=B[i,i]-1;
229
+ V[i]=V[i]*var(1);
230
+ }
231
+ e0[i0]=e0[i0]-1;
232
+ }
233
+ else
234
+ {
235
+ i=i+s0[i0];
236
+ }
237
+ }
238
+
239
+ l=spnf(list(e0,s0));
240
+ e0,s0=l[1..2];
241
+ }
242
+
243
+ U=0;
244
+ for(i=1;i<=ncols(e0);i++)
245
+ {
246
+ U=U+syz(power(jet(B,0)-e0[i],s0[i]));
247
+ }
248
+ B=lift(U,B*U);
249
+ V=matrix(V)*matrix(U);
250
+
251
+ d=mindegree(V);
252
+ V=V/var(1)^d;
253
+ B=B+d*matrix(freemodule(mu));
254
+ for(i=ncols(e0);i>=1;i--)
255
+ {
256
+ e0[i]=e0[i]+d;
257
+ }
258
+
259
+ return(e0,s0,V,B);
260
+ }
261
+ ///////////////////////////////////////////////////////////////////////////////
262
+
263
+ static proc spec(ideal e0,intvec s0,module V,matrix B)
264
+ {
265
+ int mu=ncols(B);
266
+
267
+ int i,j,k;
268
+
269
+ int d=maxdegree(V);
270
+ int d0=d;
271
+ V=chart(V);
272
+ module U=std(V);
273
+ while(size(reduce(var(1)^d*freemodule(mu),U,5))>0)
274
+ {
275
+ d++;
276
+ }
277
+ if(d>d0)
278
+ {
279
+ k=d-d0;
280
+ B=B-k*freemodule(mu);
281
+ for(i=1;i<=ncols(e0);i++)
282
+ {
283
+ e0[i]=e0[i]-k;
284
+ }
285
+ }
286
+ module G=lift(V,var(1)^d*freemodule(mu));
287
+ G=std(G);
288
+ G=simplify(G,1);
289
+
290
+ ideal e;
291
+ intvec s;
292
+ e[mu]=0;
293
+ for(j,k=1,1;j<=ncols(e0);j++)
294
+ {
295
+ for(i=s0[j];i>=1;i,k=i-1,k+1)
296
+ {
297
+ e[k]=e0[j];
298
+ s[k]=j;
299
+ }
300
+ }
301
+
302
+ ideal a;
303
+ a[mu]=0;
304
+ for(i=1;i<=mu;i++)
305
+ {
306
+ a[i]=leadcoef(e[leadexp(G[i])[nvars(basering)+1]])+leadexp(G[i])[1];
307
+ }
308
+
309
+ return(a,e0,e,s,V,B,G);
310
+ }
311
+ ///////////////////////////////////////////////////////////////////////////////
312
+
313
+ static proc fsplit(ideal e0,ideal e,intvec s,module V,matrix B,module G)
314
+ {
315
+ int mu=ncols(e);
316
+
317
+ int i,j,k;
318
+
319
+ number n,n0;
320
+ vector v,v0;
321
+ list F;
322
+ for(i=ncols(e0);i>=1;i--)
323
+ {
324
+ F[i]=module(matrix(0,mu,1));
325
+ }
326
+ for(i=mu;i>=1;i--)
327
+ {
328
+ v=G[i];
329
+ v0=lead(v);
330
+ n0=leadcoef(e[leadexp(v0)[nvars(basering)+1]])+leadexp(v0)[1];
331
+ v=v-lead(v);
332
+ while(v!=0)
333
+ {
334
+ n=leadcoef(e[leadexp(v)[nvars(basering)+1]])+leadexp(v)[1];
335
+ if(n==n0)
336
+ {
337
+ v0=v0+lead(v);
338
+ v=v-lead(v);
339
+ }
340
+ else
341
+ {
342
+ v=0;
343
+ }
344
+ }
345
+ j=s[leadexp(v0)[nvars(basering)+1]];
346
+ F[j]=F[j]+v0;
347
+ }
348
+
349
+ matrix B0=jet(B,0);
350
+ module U,U0,U1,U2;
351
+ matrix N;
352
+ for(i=size(F);i>=1;i--)
353
+ {
354
+ N=B0-e0[i];
355
+ U0=0;
356
+ while(size(F[i])>0)
357
+ {
358
+ k=0;
359
+ U1=jet(F[i],0);
360
+ while(size(U1)>0)
361
+ {
362
+ for(j=ncols(U1);j>=1;j--)
363
+ {
364
+ if(size(reduce(U1[j],std(U0),5))>0)
365
+ {
366
+ U0=U1[j]+U0;
367
+ }
368
+ }
369
+ U1=N*U1;
370
+ k++;
371
+ }
372
+ F[i]=module(F[i]/var(1));
373
+ }
374
+ U=U0+U;
375
+ }
376
+
377
+ V=matrix(V)*matrix(U);
378
+ G=lift(U,G);
379
+ B=lift(U,B*U);
380
+
381
+ return(e,V,B,G);
382
+ }
383
+ ///////////////////////////////////////////////////////////////////////////////
384
+
385
+ static proc glift(ideal e,module V,matrix B,module G)
386
+ {
387
+ int mu=ncols(e);
388
+
389
+ int d=maxdegree(B);
390
+ B=chart(B);
391
+ G=std(G);
392
+ G=simplify(G,1);
393
+
394
+ int i,j,k;
395
+
396
+ ideal v;
397
+ for(i=mu;i>=1;i--)
398
+ {
399
+ v[i]=e[leadexp(G[i])[nvars(basering)+1]]+leadexp(G[i])[1];
400
+ }
401
+
402
+ number c;
403
+ matrix g[mu][1];
404
+ matrix m[mu][1];
405
+ matrix a[mu][1];
406
+ matrix A[mu][mu];
407
+ module M=var(1)^d*G;
408
+ module N=var(1)*B*matrix(G)+var(1)^(d+2)*diff(matrix(G),var(1));
409
+ while(size(N)>0)
410
+ {
411
+ j=mu;
412
+ for(k=mu-1;k>=1;k--)
413
+ {
414
+ if(N[k]>N[j])
415
+ {
416
+ j=k;
417
+ }
418
+ }
419
+
420
+ i=mu;
421
+ while(leadexp(M[i])[nvars(basering)+1]!=leadexp(N[j])[nvars(basering)+1])
422
+ {
423
+ i--;
424
+ }
425
+
426
+ k=leadexp(N[j])[1]-leadexp(M[i])[1];
427
+ if(k==0||i==j)
428
+ {
429
+ c=leadcoef(N[j])/leadcoef(M[i]);
430
+ A[i,j]=A[i,j]+c*var(1)^k;
431
+ N[j]=N[j]-c*var(1)^k*M[i];
432
+ }
433
+ else
434
+ {
435
+ c=leadcoef(N[j])/leadcoef(M[i])/(1-k-leadcoef(v[i])+leadcoef(v[j]));
436
+ G[j]=G[j]+c*var(1)^(k-1)*G[i];
437
+ M[j]=M[j]+c*var(1)^(k-1)*M[i];
438
+ g=c*var(1)^(k-1)*G[i];
439
+ N[j]=N[j]+(var(1)*B*g+var(1)^(d+2)*diff(g,var(1)))[1];
440
+ m=M[i];
441
+ a=transpose(A)[j];
442
+ N=N-c*var(1)^(k-1)*m*transpose(a);
443
+ }
444
+ }
445
+
446
+ G=matrix(V)*matrix(G);
447
+ G=G/var(1)^mindegree(G);
448
+
449
+ return(G,A);
450
+ }
451
+ ///////////////////////////////////////////////////////////////////////////////
452
+
453
+ proc goodBasis(poly f)
454
+ "USAGE: goodBasis(f); poly f
455
+ ASSUME: f is cohomologically tame in the sense of Sabbah [Sab98,8]
456
+ RETURN:
457
+ @format
458
+ ring R; basering with new variable s
459
+ ideal b; [matrix(b)] is a good basis of the Brieskorn lattice
460
+ matrix A; A(s)=A0+s*A1 and t[matrix(b)]=[matrix(b)](A(s)+s^2*(d/ds))
461
+ @end format
462
+ REMARKS: procedure implements Algorithm 6 in [Sch05]
463
+ KEYWORDS: tame polynomial; Gauss-Manin system; Brieskorn lattice;
464
+ mixed Hodge structure; V-filtration; weight filtration;
465
+ monodromy; spectrum; spectral pairs; good basis
466
+ SEE ALSO: gmssing_lib
467
+ EXAMPLE: example goodBasis; shows examples
468
+ "
469
+ {
470
+ def @X=basering;
471
+ int n=nvars(@X);
472
+ ideal J=jacob(f);
473
+
474
+ if(vdim(std(J))<=0)
475
+ {
476
+ ERROR("input is not cohomologically tame");
477
+ }
478
+
479
+ int i,j,k,l;
480
+
481
+ ideal X=maxideal(1);
482
+ ring @XS = create_ring(0, "(s,"+varstr(@X)+")", "(C,dp(1),dp("+string(n)+"))");
483
+ poly f=imap(@X,f);
484
+ ideal J=imap(@X,J);
485
+ ideal JS=std(J+var(1));
486
+ ideal b0=kbase(JS);
487
+ int mu=ncols(b0);
488
+ ideal X=imap(@X,X);
489
+
490
+ ideal b;
491
+ matrix A;
492
+ module B,B0;
493
+ ideal K,L,M=1,J,1;
494
+ ideal K0,L0,M0=X,X,X;
495
+ module K1,L1,K2,L2;
496
+ module LL1;
497
+ for(i=1;i<=deg(f)-1;i++)
498
+ {
499
+ M=M,M0;
500
+ M0=M0*X;
501
+ }
502
+
503
+ ring @S=0,(s,t),(dp,C);
504
+ number a0;
505
+ ideal a;
506
+ int d;
507
+ ideal e,e0;
508
+ intvec s,s0;
509
+ matrix A,B;
510
+ module V,G;
511
+
512
+ while(2*a0!=mu*n)
513
+ {
514
+ setring(@XS);
515
+
516
+ B=0;
517
+ while(size(B)<mu||size(B0)<mu||maxdegree(b)+deg(f)>k)
518
+ {
519
+ k++;
520
+ K=K,K0;
521
+ K0=K0*X;
522
+
523
+ B=0;
524
+ while(size(B)==0||size(B)>mu)
525
+ {
526
+ l++;
527
+ for(i=1;i<=size(L0);i++)
528
+ {
529
+ for(j=1;j<=n;j++)
530
+ {
531
+ L=L,J[j]*L0[i]-var(1)*diff(L0[i],var(j+1));
532
+ }
533
+ }
534
+ L0=L0*X;
535
+ M=M,M0;
536
+ M0=M0*X;
537
+
538
+ K1=coeffs(K,K,product(X));
539
+ L1=std(coeffs(L,M,product(X)));
540
+ LL1=jet(lead(L1),0);
541
+ attrib(LL1,"isSB",1);
542
+ K2=simplify(reduce(K1,LL1),2);
543
+ L2=intersect(K2,L1);
544
+
545
+ B=pidbasis(K2,L2);
546
+ }
547
+ B0=std(coeffs(reduce(matrix(K,nrows(module(K)),nrows(B))*B,JS),b0));
548
+
549
+ b=matrix(K,nrows(module(K)),nrows(B))*B;
550
+ }
551
+
552
+ A=lift(B,reduce(coeffs(f*b+var(1)^2*diff(b,var(1)),M,product(X)),L1));
553
+ d=maxdegree(A);
554
+ A=chart(A);
555
+
556
+ setring(@S);
557
+
558
+ e0,s0,V,B=vfiltmat(imap(@XS,A),d);
559
+ a,e0,e,s,V,B,G=spec(e0,s0,V,B);
560
+
561
+ a0=leadcoef(a[1]);
562
+ for(i=2;i<=mu;i++)
563
+ {
564
+ a0=a0+leadcoef(a[i]);
565
+ }
566
+ }
567
+
568
+ G,A=glift(fsplit(e0,e,s,V,B,G));
569
+
570
+ setring(@XS);
571
+ b=matrix(b)*imap(@S,G);
572
+ A=imap(@S,A);
573
+ export(b,A);
574
+ kill @S;
575
+
576
+ setring(@X);
577
+ return(@XS);
578
+ }
579
+ example
580
+ { "EXAMPLE:"; echo=2;
581
+ ring R=0,(x,y,z),dp;
582
+ poly f=x+y+z+x2y2z2;
583
+ def Rs=goodBasis(f);
584
+ setring(Rs);
585
+ b;
586
+ print(jet(A,0));
587
+ print(jet(A/var(1),0));
588
+ }
589
+ ///////////////////////////////////////////////////////////////////////////////