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.

Files changed (490) hide show
  1. PySingular.cpython-314-aarch64-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 +490 -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-6a2a8666.4.1.so +0 -0
  7. passagemath_singular.libs/libcddgmp-ac579979.so.0.1.3 +0 -0
  8. passagemath_singular.libs/libfactory-4-66e33516.4.1.so +0 -0
  9. passagemath_singular.libs/libflint-81de1160.so.21.0.0 +0 -0
  10. passagemath_singular.libs/libgf2x-fbd36f80.so.3.0.0 +0 -0
  11. passagemath_singular.libs/libgfortran-e1b7dfc8.so.5.0.0 +0 -0
  12. passagemath_singular.libs/libgmp-93ebf16a.so.10.5.0 +0 -0
  13. passagemath_singular.libs/libgsl-e3525837.so.28.0.0 +0 -0
  14. passagemath_singular.libs/libmpfr-e0f11cf3.so.6.2.1 +0 -0
  15. passagemath_singular.libs/libntl-0043a3a2.so.44.0.1 +0 -0
  16. passagemath_singular.libs/libomalloc-0-06512335.9.6.so +0 -0
  17. passagemath_singular.libs/libopenblasp-r0-4c5b64b1.3.29.so +0 -0
  18. passagemath_singular.libs/libpolys-4-cb7246b5.4.1.so +0 -0
  19. passagemath_singular.libs/libreadline-28330744.so.8.2 +0 -0
  20. passagemath_singular.libs/libsingular_resources-4-8c425241.4.1.so +0 -0
  21. passagemath_singular.libs/libtinfo-f81c2d16.so.6.3 +0 -0
  22. sage/algebras/all__sagemath_singular.py +3 -0
  23. sage/algebras/fusion_rings/all.py +19 -0
  24. sage/algebras/fusion_rings/f_matrix.py +2448 -0
  25. sage/algebras/fusion_rings/fast_parallel_fmats_methods.cpython-314-aarch64-linux-gnu.so +0 -0
  26. sage/algebras/fusion_rings/fast_parallel_fmats_methods.pxd +5 -0
  27. sage/algebras/fusion_rings/fast_parallel_fmats_methods.pyx +538 -0
  28. sage/algebras/fusion_rings/fast_parallel_fusion_ring_braid_repn.cpython-314-aarch64-linux-gnu.so +0 -0
  29. sage/algebras/fusion_rings/fast_parallel_fusion_ring_braid_repn.pxd +3 -0
  30. sage/algebras/fusion_rings/fast_parallel_fusion_ring_braid_repn.pyx +331 -0
  31. sage/algebras/fusion_rings/fusion_double.py +899 -0
  32. sage/algebras/fusion_rings/fusion_ring.py +1580 -0
  33. sage/algebras/fusion_rings/poly_tup_engine.cpython-314-aarch64-linux-gnu.so +0 -0
  34. sage/algebras/fusion_rings/poly_tup_engine.pxd +24 -0
  35. sage/algebras/fusion_rings/poly_tup_engine.pyx +579 -0
  36. sage/algebras/fusion_rings/shm_managers.cpython-314-aarch64-linux-gnu.so +0 -0
  37. sage/algebras/fusion_rings/shm_managers.pxd +24 -0
  38. sage/algebras/fusion_rings/shm_managers.pyx +780 -0
  39. sage/algebras/letterplace/all.py +1 -0
  40. sage/algebras/letterplace/free_algebra_element_letterplace.cpython-314-aarch64-linux-gnu.so +0 -0
  41. sage/algebras/letterplace/free_algebra_element_letterplace.pxd +18 -0
  42. sage/algebras/letterplace/free_algebra_element_letterplace.pyx +755 -0
  43. sage/algebras/letterplace/free_algebra_letterplace.cpython-314-aarch64-linux-gnu.so +0 -0
  44. sage/algebras/letterplace/free_algebra_letterplace.pxd +35 -0
  45. sage/algebras/letterplace/free_algebra_letterplace.pyx +914 -0
  46. sage/algebras/letterplace/letterplace_ideal.cpython-314-aarch64-linux-gnu.so +0 -0
  47. sage/algebras/letterplace/letterplace_ideal.pyx +408 -0
  48. sage/algebras/quatalg/all.py +2 -0
  49. sage/algebras/quatalg/quaternion_algebra.py +4778 -0
  50. sage/algebras/quatalg/quaternion_algebra_cython.cpython-314-aarch64-linux-gnu.so +0 -0
  51. sage/algebras/quatalg/quaternion_algebra_cython.pyx +261 -0
  52. sage/algebras/quatalg/quaternion_algebra_element.cpython-314-aarch64-linux-gnu.so +0 -0
  53. sage/algebras/quatalg/quaternion_algebra_element.pxd +29 -0
  54. sage/algebras/quatalg/quaternion_algebra_element.pyx +2176 -0
  55. sage/all__sagemath_singular.py +11 -0
  56. sage/ext_data/all__sagemath_singular.py +1 -0
  57. sage/ext_data/singular/function_field/core.lib +98 -0
  58. sage/interfaces/all__sagemath_singular.py +1 -0
  59. sage/interfaces/singular.py +2835 -0
  60. sage/libs/all__sagemath_singular.py +1 -0
  61. sage/libs/singular/__init__.py +1 -0
  62. sage/libs/singular/decl.pxd +1168 -0
  63. sage/libs/singular/function.cpython-314-aarch64-linux-gnu.so +0 -0
  64. sage/libs/singular/function.pxd +87 -0
  65. sage/libs/singular/function.pyx +1901 -0
  66. sage/libs/singular/function_factory.py +61 -0
  67. sage/libs/singular/groebner_strategy.cpython-314-aarch64-linux-gnu.so +0 -0
  68. sage/libs/singular/groebner_strategy.pxd +22 -0
  69. sage/libs/singular/groebner_strategy.pyx +582 -0
  70. sage/libs/singular/option.cpython-314-aarch64-linux-gnu.so +0 -0
  71. sage/libs/singular/option.pyx +671 -0
  72. sage/libs/singular/polynomial.cpython-314-aarch64-linux-gnu.so +0 -0
  73. sage/libs/singular/polynomial.pxd +39 -0
  74. sage/libs/singular/polynomial.pyx +661 -0
  75. sage/libs/singular/ring.cpython-314-aarch64-linux-gnu.so +0 -0
  76. sage/libs/singular/ring.pxd +58 -0
  77. sage/libs/singular/ring.pyx +893 -0
  78. sage/libs/singular/singular.cpython-314-aarch64-linux-gnu.so +0 -0
  79. sage/libs/singular/singular.pxd +72 -0
  80. sage/libs/singular/singular.pyx +1944 -0
  81. sage/libs/singular/standard_options.py +145 -0
  82. sage/matrix/all__sagemath_singular.py +1 -0
  83. sage/matrix/matrix_mpolynomial_dense.cpython-314-aarch64-linux-gnu.so +0 -0
  84. sage/matrix/matrix_mpolynomial_dense.pxd +7 -0
  85. sage/matrix/matrix_mpolynomial_dense.pyx +615 -0
  86. sage/rings/all__sagemath_singular.py +1 -0
  87. sage/rings/function_field/all__sagemath_singular.py +1 -0
  88. sage/rings/function_field/derivations_polymod.py +911 -0
  89. sage/rings/function_field/element_polymod.cpython-314-aarch64-linux-gnu.so +0 -0
  90. sage/rings/function_field/element_polymod.pyx +406 -0
  91. sage/rings/function_field/function_field_polymod.py +2611 -0
  92. sage/rings/function_field/ideal_polymod.py +1775 -0
  93. sage/rings/function_field/order_polymod.py +1475 -0
  94. sage/rings/function_field/place_polymod.py +681 -0
  95. sage/rings/polynomial/all__sagemath_singular.py +1 -0
  96. sage/rings/polynomial/multi_polynomial_ideal_libsingular.cpython-314-aarch64-linux-gnu.so +0 -0
  97. sage/rings/polynomial/multi_polynomial_ideal_libsingular.pxd +5 -0
  98. sage/rings/polynomial/multi_polynomial_ideal_libsingular.pyx +339 -0
  99. sage/rings/polynomial/multi_polynomial_libsingular.cpython-314-aarch64-linux-gnu.so +0 -0
  100. sage/rings/polynomial/multi_polynomial_libsingular.pxd +30 -0
  101. sage/rings/polynomial/multi_polynomial_libsingular.pyx +6277 -0
  102. sage/rings/polynomial/plural.cpython-314-aarch64-linux-gnu.so +0 -0
  103. sage/rings/polynomial/plural.pxd +48 -0
  104. sage/rings/polynomial/plural.pyx +3171 -0
  105. sage/symbolic/all__sagemath_singular.py +1 -0
  106. sage/symbolic/comparison_impl.pxi +428 -0
  107. sage/symbolic/constants_c_impl.pxi +178 -0
  108. sage/symbolic/expression.cpython-314-aarch64-linux-gnu.so +0 -0
  109. sage/symbolic/expression.pxd +7 -0
  110. sage/symbolic/expression.pyx +14200 -0
  111. sage/symbolic/getitem_impl.pxi +202 -0
  112. sage/symbolic/pynac.pxi +572 -0
  113. sage/symbolic/pynac_constant_impl.pxi +133 -0
  114. sage/symbolic/pynac_function_impl.pxi +206 -0
  115. sage/symbolic/pynac_impl.pxi +2576 -0
  116. sage/symbolic/pynac_wrap.h +124 -0
  117. sage/symbolic/series_impl.pxi +272 -0
  118. sage/symbolic/substitution_map_impl.pxi +94 -0
  119. sage_wheels/bin/ESingular +0 -0
  120. sage_wheels/bin/Singular +0 -0
  121. sage_wheels/bin/TSingular +0 -0
  122. sage_wheels/lib/singular/MOD/cohomo.la +41 -0
  123. sage_wheels/lib/singular/MOD/cohomo.so +0 -0
  124. sage_wheels/lib/singular/MOD/customstd.la +41 -0
  125. sage_wheels/lib/singular/MOD/customstd.so +0 -0
  126. sage_wheels/lib/singular/MOD/freealgebra.la +41 -0
  127. sage_wheels/lib/singular/MOD/freealgebra.so +0 -0
  128. sage_wheels/lib/singular/MOD/gfanlib.la +41 -0
  129. sage_wheels/lib/singular/MOD/gfanlib.so +0 -0
  130. sage_wheels/lib/singular/MOD/gitfan.la +41 -0
  131. sage_wheels/lib/singular/MOD/gitfan.so +0 -0
  132. sage_wheels/lib/singular/MOD/interval.la +41 -0
  133. sage_wheels/lib/singular/MOD/interval.so +0 -0
  134. sage_wheels/lib/singular/MOD/loctriv.la +41 -0
  135. sage_wheels/lib/singular/MOD/loctriv.so +0 -0
  136. sage_wheels/lib/singular/MOD/machinelearning.la +41 -0
  137. sage_wheels/lib/singular/MOD/machinelearning.so +0 -0
  138. sage_wheels/lib/singular/MOD/p_Procs_FieldGeneral.la +41 -0
  139. sage_wheels/lib/singular/MOD/p_Procs_FieldGeneral.so +0 -0
  140. sage_wheels/lib/singular/MOD/p_Procs_FieldIndep.la +41 -0
  141. sage_wheels/lib/singular/MOD/p_Procs_FieldIndep.so +0 -0
  142. sage_wheels/lib/singular/MOD/p_Procs_FieldQ.la +41 -0
  143. sage_wheels/lib/singular/MOD/p_Procs_FieldQ.so +0 -0
  144. sage_wheels/lib/singular/MOD/p_Procs_FieldZp.la +41 -0
  145. sage_wheels/lib/singular/MOD/p_Procs_FieldZp.so +0 -0
  146. sage_wheels/lib/singular/MOD/partialgb.la +41 -0
  147. sage_wheels/lib/singular/MOD/partialgb.so +0 -0
  148. sage_wheels/lib/singular/MOD/pyobject.la +41 -0
  149. sage_wheels/lib/singular/MOD/pyobject.so +0 -0
  150. sage_wheels/lib/singular/MOD/singmathic.la +41 -0
  151. sage_wheels/lib/singular/MOD/singmathic.so +0 -0
  152. sage_wheels/lib/singular/MOD/sispasm.la +41 -0
  153. sage_wheels/lib/singular/MOD/sispasm.so +0 -0
  154. sage_wheels/lib/singular/MOD/subsets.la +41 -0
  155. sage_wheels/lib/singular/MOD/subsets.so +0 -0
  156. sage_wheels/lib/singular/MOD/systhreads.la +41 -0
  157. sage_wheels/lib/singular/MOD/systhreads.so +0 -0
  158. sage_wheels/lib/singular/MOD/syzextra.la +41 -0
  159. sage_wheels/lib/singular/MOD/syzextra.so +0 -0
  160. sage_wheels/libexec/singular/MOD/change_cost +0 -0
  161. sage_wheels/libexec/singular/MOD/singularsurf +11 -0
  162. sage_wheels/libexec/singular/MOD/singularsurf_jupyter +9 -0
  163. sage_wheels/libexec/singular/MOD/singularsurf_win +10 -0
  164. sage_wheels/libexec/singular/MOD/solve_IP +0 -0
  165. sage_wheels/libexec/singular/MOD/surfex +16 -0
  166. sage_wheels/libexec/singular/MOD/toric_ideal +0 -0
  167. sage_wheels/share/factory/gftables/10201 +342 -0
  168. sage_wheels/share/factory/gftables/1024 +37 -0
  169. sage_wheels/share/factory/gftables/10609 +356 -0
  170. sage_wheels/share/factory/gftables/11449 +384 -0
  171. sage_wheels/share/factory/gftables/11881 +398 -0
  172. sage_wheels/share/factory/gftables/121 +6 -0
  173. sage_wheels/share/factory/gftables/12167 +408 -0
  174. sage_wheels/share/factory/gftables/125 +7 -0
  175. sage_wheels/share/factory/gftables/12769 +428 -0
  176. sage_wheels/share/factory/gftables/128 +7 -0
  177. sage_wheels/share/factory/gftables/1331 +47 -0
  178. sage_wheels/share/factory/gftables/1369 +48 -0
  179. sage_wheels/share/factory/gftables/14641 +490 -0
  180. sage_wheels/share/factory/gftables/15625 +523 -0
  181. sage_wheels/share/factory/gftables/16 +3 -0
  182. sage_wheels/share/factory/gftables/16129 +540 -0
  183. sage_wheels/share/factory/gftables/16384 +549 -0
  184. sage_wheels/share/factory/gftables/16807 +563 -0
  185. sage_wheels/share/factory/gftables/1681 +58 -0
  186. sage_wheels/share/factory/gftables/169 +8 -0
  187. sage_wheels/share/factory/gftables/17161 +574 -0
  188. sage_wheels/share/factory/gftables/1849 +64 -0
  189. sage_wheels/share/factory/gftables/18769 +628 -0
  190. sage_wheels/share/factory/gftables/19321 +646 -0
  191. sage_wheels/share/factory/gftables/19683 +659 -0
  192. sage_wheels/share/factory/gftables/2048 +71 -0
  193. sage_wheels/share/factory/gftables/2187 +75 -0
  194. sage_wheels/share/factory/gftables/2197 +76 -0
  195. sage_wheels/share/factory/gftables/2209 +76 -0
  196. sage_wheels/share/factory/gftables/22201 +742 -0
  197. sage_wheels/share/factory/gftables/22801 +762 -0
  198. sage_wheels/share/factory/gftables/2401 +82 -0
  199. sage_wheels/share/factory/gftables/243 +11 -0
  200. sage_wheels/share/factory/gftables/24389 +815 -0
  201. sage_wheels/share/factory/gftables/24649 +824 -0
  202. sage_wheels/share/factory/gftables/25 +3 -0
  203. sage_wheels/share/factory/gftables/256 +11 -0
  204. sage_wheels/share/factory/gftables/26569 +888 -0
  205. sage_wheels/share/factory/gftables/27 +3 -0
  206. sage_wheels/share/factory/gftables/27889 +932 -0
  207. sage_wheels/share/factory/gftables/2809 +96 -0
  208. sage_wheels/share/factory/gftables/28561 +954 -0
  209. sage_wheels/share/factory/gftables/289 +12 -0
  210. sage_wheels/share/factory/gftables/29791 +995 -0
  211. sage_wheels/share/factory/gftables/29929 +1000 -0
  212. sage_wheels/share/factory/gftables/3125 +107 -0
  213. sage_wheels/share/factory/gftables/32 +4 -0
  214. sage_wheels/share/factory/gftables/32041 +1070 -0
  215. sage_wheels/share/factory/gftables/32761 +1094 -0
  216. sage_wheels/share/factory/gftables/32768 +1095 -0
  217. sage_wheels/share/factory/gftables/343 +14 -0
  218. sage_wheels/share/factory/gftables/3481 +118 -0
  219. sage_wheels/share/factory/gftables/361 +14 -0
  220. sage_wheels/share/factory/gftables/36481 +1218 -0
  221. sage_wheels/share/factory/gftables/3721 +126 -0
  222. sage_wheels/share/factory/gftables/37249 +1244 -0
  223. sage_wheels/share/factory/gftables/38809 +1296 -0
  224. sage_wheels/share/factory/gftables/39601 +1322 -0
  225. sage_wheels/share/factory/gftables/4 +3 -0
  226. sage_wheels/share/factory/gftables/4096 +139 -0
  227. sage_wheels/share/factory/gftables/44521 +1486 -0
  228. sage_wheels/share/factory/gftables/4489 +152 -0
  229. sage_wheels/share/factory/gftables/49 +4 -0
  230. sage_wheels/share/factory/gftables/4913 +166 -0
  231. sage_wheels/share/factory/gftables/49729 +1660 -0
  232. sage_wheels/share/factory/gftables/5041 +170 -0
  233. sage_wheels/share/factory/gftables/50653 +1691 -0
  234. sage_wheels/share/factory/gftables/512 +20 -0
  235. sage_wheels/share/factory/gftables/51529 +1720 -0
  236. sage_wheels/share/factory/gftables/52441 +1750 -0
  237. sage_wheels/share/factory/gftables/529 +20 -0
  238. sage_wheels/share/factory/gftables/5329 +180 -0
  239. sage_wheels/share/factory/gftables/54289 +1812 -0
  240. sage_wheels/share/factory/gftables/57121 +1906 -0
  241. sage_wheels/share/factory/gftables/58081 +1938 -0
  242. sage_wheels/share/factory/gftables/59049 +1971 -0
  243. sage_wheels/share/factory/gftables/6241 +210 -0
  244. sage_wheels/share/factory/gftables/625 +23 -0
  245. sage_wheels/share/factory/gftables/63001 +2102 -0
  246. sage_wheels/share/factory/gftables/64 +5 -0
  247. sage_wheels/share/factory/gftables/6561 +221 -0
  248. sage_wheels/share/factory/gftables/6859 +231 -0
  249. sage_wheels/share/factory/gftables/6889 +232 -0
  250. sage_wheels/share/factory/gftables/729 +27 -0
  251. sage_wheels/share/factory/gftables/7921 +266 -0
  252. sage_wheels/share/factory/gftables/8 +3 -0
  253. sage_wheels/share/factory/gftables/81 +5 -0
  254. sage_wheels/share/factory/gftables/8192 +276 -0
  255. sage_wheels/share/factory/gftables/841 +30 -0
  256. sage_wheels/share/factory/gftables/9 +3 -0
  257. sage_wheels/share/factory/gftables/9409 +316 -0
  258. sage_wheels/share/factory/gftables/961 +34 -0
  259. sage_wheels/share/info/singular.info +191898 -0
  260. sage_wheels/share/singular/LIB/GND.lib +1359 -0
  261. sage_wheels/share/singular/LIB/JMBTest.lib +976 -0
  262. sage_wheels/share/singular/LIB/JMSConst.lib +1363 -0
  263. sage_wheels/share/singular/LIB/KVequiv.lib +699 -0
  264. sage_wheels/share/singular/LIB/SingularityDBM.lib +491 -0
  265. sage_wheels/share/singular/LIB/VecField.lib +1542 -0
  266. sage_wheels/share/singular/LIB/absfact.lib +959 -0
  267. sage_wheels/share/singular/LIB/ainvar.lib +730 -0
  268. sage_wheels/share/singular/LIB/aksaka.lib +419 -0
  269. sage_wheels/share/singular/LIB/alexpoly.lib +2542 -0
  270. sage_wheels/share/singular/LIB/algebra.lib +1193 -0
  271. sage_wheels/share/singular/LIB/all.lib +136 -0
  272. sage_wheels/share/singular/LIB/arcpoint.lib +514 -0
  273. sage_wheels/share/singular/LIB/arnold.lib +4553 -0
  274. sage_wheels/share/singular/LIB/arnoldclassify.lib +2058 -0
  275. sage_wheels/share/singular/LIB/arr.lib +3486 -0
  276. sage_wheels/share/singular/LIB/assprimeszerodim.lib +755 -0
  277. sage_wheels/share/singular/LIB/autgradalg.lib +3361 -0
  278. sage_wheels/share/singular/LIB/bfun.lib +1964 -0
  279. sage_wheels/share/singular/LIB/bimodules.lib +774 -0
  280. sage_wheels/share/singular/LIB/brillnoether.lib +226 -0
  281. sage_wheels/share/singular/LIB/brnoeth.lib +5017 -0
  282. sage_wheels/share/singular/LIB/central.lib +2169 -0
  283. sage_wheels/share/singular/LIB/chern.lib +4162 -0
  284. sage_wheels/share/singular/LIB/cimonom.lib +571 -0
  285. sage_wheels/share/singular/LIB/cisimplicial.lib +1835 -0
  286. sage_wheels/share/singular/LIB/classify.lib +3239 -0
  287. sage_wheels/share/singular/LIB/classify2.lib +1462 -0
  288. sage_wheels/share/singular/LIB/classifyMapGerms.lib +1515 -0
  289. sage_wheels/share/singular/LIB/classify_aeq.lib +3253 -0
  290. sage_wheels/share/singular/LIB/classifyceq.lib +2092 -0
  291. sage_wheels/share/singular/LIB/classifyci.lib +1133 -0
  292. sage_wheels/share/singular/LIB/combinat.lib +91 -0
  293. sage_wheels/share/singular/LIB/compregb.lib +276 -0
  294. sage_wheels/share/singular/LIB/control.lib +1636 -0
  295. sage_wheels/share/singular/LIB/crypto.lib +3795 -0
  296. sage_wheels/share/singular/LIB/curveInv.lib +667 -0
  297. sage_wheels/share/singular/LIB/curvepar.lib +1817 -0
  298. sage_wheels/share/singular/LIB/customstd.lib +100 -0
  299. sage_wheels/share/singular/LIB/deRham.lib +5979 -0
  300. sage_wheels/share/singular/LIB/decodegb.lib +2134 -0
  301. sage_wheels/share/singular/LIB/decomp.lib +1655 -0
  302. sage_wheels/share/singular/LIB/deflation.lib +872 -0
  303. sage_wheels/share/singular/LIB/deform.lib +925 -0
  304. sage_wheels/share/singular/LIB/difform.lib +3055 -0
  305. sage_wheels/share/singular/LIB/divisors.lib +750 -0
  306. sage_wheels/share/singular/LIB/dmod.lib +5817 -0
  307. sage_wheels/share/singular/LIB/dmodapp.lib +3269 -0
  308. sage_wheels/share/singular/LIB/dmodideal.lib +1211 -0
  309. sage_wheels/share/singular/LIB/dmodloc.lib +2645 -0
  310. sage_wheels/share/singular/LIB/dmodvar.lib +818 -0
  311. sage_wheels/share/singular/LIB/dummy.lib +17 -0
  312. sage_wheels/share/singular/LIB/elim.lib +1009 -0
  313. sage_wheels/share/singular/LIB/ellipticcovers.lib +548 -0
  314. sage_wheels/share/singular/LIB/enumpoints.lib +146 -0
  315. sage_wheels/share/singular/LIB/equising.lib +2127 -0
  316. sage_wheels/share/singular/LIB/ffmodstd.lib +2384 -0
  317. sage_wheels/share/singular/LIB/ffsolve.lib +1289 -0
  318. sage_wheels/share/singular/LIB/findifs.lib +778 -0
  319. sage_wheels/share/singular/LIB/finitediff.lib +1768 -0
  320. sage_wheels/share/singular/LIB/finvar.lib +7989 -0
  321. sage_wheels/share/singular/LIB/fpadim.lib +2429 -0
  322. sage_wheels/share/singular/LIB/fpalgebras.lib +1666 -0
  323. sage_wheels/share/singular/LIB/fpaprops.lib +1462 -0
  324. sage_wheels/share/singular/LIB/freegb.lib +3853 -0
  325. sage_wheels/share/singular/LIB/general.lib +1350 -0
  326. sage_wheels/share/singular/LIB/gfan.lib +1768 -0
  327. sage_wheels/share/singular/LIB/gitfan.lib +3130 -0
  328. sage_wheels/share/singular/LIB/gkdim.lib +99 -0
  329. sage_wheels/share/singular/LIB/gmspoly.lib +589 -0
  330. sage_wheels/share/singular/LIB/gmssing.lib +1739 -0
  331. sage_wheels/share/singular/LIB/goettsche.lib +909 -0
  332. sage_wheels/share/singular/LIB/graal.lib +1366 -0
  333. sage_wheels/share/singular/LIB/gradedModules.lib +2541 -0
  334. sage_wheels/share/singular/LIB/graphics.lib +360 -0
  335. sage_wheels/share/singular/LIB/grobcov.lib +7706 -0
  336. sage_wheels/share/singular/LIB/groups.lib +1123 -0
  337. sage_wheels/share/singular/LIB/grwalk.lib +507 -0
  338. sage_wheels/share/singular/LIB/hdepth.lib +194 -0
  339. sage_wheels/share/singular/LIB/help.cnf +57 -0
  340. sage_wheels/share/singular/LIB/hess.lib +1946 -0
  341. sage_wheels/share/singular/LIB/hnoether.lib +4292 -0
  342. sage_wheels/share/singular/LIB/hodge.lib +400 -0
  343. sage_wheels/share/singular/LIB/homolog.lib +1965 -0
  344. sage_wheels/share/singular/LIB/hyperel.lib +975 -0
  345. sage_wheels/share/singular/LIB/inout.lib +679 -0
  346. sage_wheels/share/singular/LIB/integralbasis.lib +6224 -0
  347. sage_wheels/share/singular/LIB/interval.lib +1418 -0
  348. sage_wheels/share/singular/LIB/intprog.lib +778 -0
  349. sage_wheels/share/singular/LIB/invar.lib +443 -0
  350. sage_wheels/share/singular/LIB/involut.lib +980 -0
  351. sage_wheels/share/singular/LIB/jacobson.lib +1215 -0
  352. sage_wheels/share/singular/LIB/kskernel.lib +534 -0
  353. sage_wheels/share/singular/LIB/latex.lib +3146 -0
  354. sage_wheels/share/singular/LIB/lejeune.lib +651 -0
  355. sage_wheels/share/singular/LIB/linalg.lib +2040 -0
  356. sage_wheels/share/singular/LIB/locnormal.lib +212 -0
  357. sage_wheels/share/singular/LIB/lrcalc.lib +526 -0
  358. sage_wheels/share/singular/LIB/makedbm.lib +294 -0
  359. sage_wheels/share/singular/LIB/mathml.lib +813 -0
  360. sage_wheels/share/singular/LIB/matrix.lib +1372 -0
  361. sage_wheels/share/singular/LIB/maxlike.lib +1132 -0
  362. sage_wheels/share/singular/LIB/methods.lib +212 -0
  363. sage_wheels/share/singular/LIB/moddiq.lib +322 -0
  364. sage_wheels/share/singular/LIB/modfinduni.lib +181 -0
  365. sage_wheels/share/singular/LIB/modnormal.lib +218 -0
  366. sage_wheels/share/singular/LIB/modprimdec.lib +1278 -0
  367. sage_wheels/share/singular/LIB/modquotient.lib +269 -0
  368. sage_wheels/share/singular/LIB/modstd.lib +1024 -0
  369. sage_wheels/share/singular/LIB/modular.lib +545 -0
  370. sage_wheels/share/singular/LIB/modules.lib +2561 -0
  371. sage_wheels/share/singular/LIB/modwalk.lib +609 -0
  372. sage_wheels/share/singular/LIB/mondromy.lib +1016 -0
  373. sage_wheels/share/singular/LIB/monomialideal.lib +3851 -0
  374. sage_wheels/share/singular/LIB/mprimdec.lib +2353 -0
  375. sage_wheels/share/singular/LIB/mregular.lib +1863 -0
  376. sage_wheels/share/singular/LIB/multigrading.lib +5629 -0
  377. sage_wheels/share/singular/LIB/ncHilb.lib +777 -0
  378. sage_wheels/share/singular/LIB/ncModslimgb.lib +791 -0
  379. sage_wheels/share/singular/LIB/ncalg.lib +16311 -0
  380. sage_wheels/share/singular/LIB/ncall.lib +31 -0
  381. sage_wheels/share/singular/LIB/ncdecomp.lib +468 -0
  382. sage_wheels/share/singular/LIB/ncfactor.lib +13371 -0
  383. sage_wheels/share/singular/LIB/ncfrac.lib +1023 -0
  384. sage_wheels/share/singular/LIB/nchilbert.lib +448 -0
  385. sage_wheels/share/singular/LIB/nchomolog.lib +759 -0
  386. sage_wheels/share/singular/LIB/ncloc.lib +361 -0
  387. sage_wheels/share/singular/LIB/ncpreim.lib +795 -0
  388. sage_wheels/share/singular/LIB/ncrat.lib +2849 -0
  389. sage_wheels/share/singular/LIB/nctools.lib +1887 -0
  390. sage_wheels/share/singular/LIB/nets.lib +1456 -0
  391. sage_wheels/share/singular/LIB/nfmodstd.lib +1000 -0
  392. sage_wheels/share/singular/LIB/nfmodsyz.lib +732 -0
  393. sage_wheels/share/singular/LIB/noether.lib +1106 -0
  394. sage_wheels/share/singular/LIB/normal.lib +8700 -0
  395. sage_wheels/share/singular/LIB/normaliz.lib +2226 -0
  396. sage_wheels/share/singular/LIB/ntsolve.lib +362 -0
  397. sage_wheels/share/singular/LIB/numerAlg.lib +560 -0
  398. sage_wheels/share/singular/LIB/numerDecom.lib +2261 -0
  399. sage_wheels/share/singular/LIB/olga.lib +1933 -0
  400. sage_wheels/share/singular/LIB/orbitparam.lib +351 -0
  401. sage_wheels/share/singular/LIB/parallel.lib +319 -0
  402. sage_wheels/share/singular/LIB/paraplanecurves.lib +3110 -0
  403. sage_wheels/share/singular/LIB/perron.lib +202 -0
  404. sage_wheels/share/singular/LIB/pfd.lib +2223 -0
  405. sage_wheels/share/singular/LIB/phindex.lib +642 -0
  406. sage_wheels/share/singular/LIB/pointid.lib +673 -0
  407. sage_wheels/share/singular/LIB/polybori.lib +1430 -0
  408. sage_wheels/share/singular/LIB/polyclass.lib +525 -0
  409. sage_wheels/share/singular/LIB/polylib.lib +1174 -0
  410. sage_wheels/share/singular/LIB/polymake.lib +1902 -0
  411. sage_wheels/share/singular/LIB/presolve.lib +1533 -0
  412. sage_wheels/share/singular/LIB/primdec.lib +9576 -0
  413. sage_wheels/share/singular/LIB/primdecint.lib +1782 -0
  414. sage_wheels/share/singular/LIB/primitiv.lib +401 -0
  415. sage_wheels/share/singular/LIB/puiseuxexpansions.lib +1631 -0
  416. sage_wheels/share/singular/LIB/purityfiltration.lib +960 -0
  417. sage_wheels/share/singular/LIB/qhmoduli.lib +1561 -0
  418. sage_wheels/share/singular/LIB/qmatrix.lib +293 -0
  419. sage_wheels/share/singular/LIB/random.lib +455 -0
  420. sage_wheels/share/singular/LIB/ratgb.lib +489 -0
  421. sage_wheels/share/singular/LIB/realclassify.lib +5759 -0
  422. sage_wheels/share/singular/LIB/realizationMatroids.lib +772 -0
  423. sage_wheels/share/singular/LIB/realrad.lib +1197 -0
  424. sage_wheels/share/singular/LIB/recover.lib +2628 -0
  425. sage_wheels/share/singular/LIB/redcgs.lib +3984 -0
  426. sage_wheels/share/singular/LIB/reesclos.lib +465 -0
  427. sage_wheels/share/singular/LIB/resbinomial.lib +2802 -0
  428. sage_wheels/share/singular/LIB/resgraph.lib +789 -0
  429. sage_wheels/share/singular/LIB/resjung.lib +820 -0
  430. sage_wheels/share/singular/LIB/resolve.lib +5110 -0
  431. sage_wheels/share/singular/LIB/resources.lib +170 -0
  432. sage_wheels/share/singular/LIB/reszeta.lib +5473 -0
  433. sage_wheels/share/singular/LIB/ring.lib +1328 -0
  434. sage_wheels/share/singular/LIB/ringgb.lib +343 -0
  435. sage_wheels/share/singular/LIB/rinvar.lib +1153 -0
  436. sage_wheels/share/singular/LIB/rootisolation.lib +1481 -0
  437. sage_wheels/share/singular/LIB/rootsmr.lib +709 -0
  438. sage_wheels/share/singular/LIB/rootsur.lib +886 -0
  439. sage_wheels/share/singular/LIB/rstandard.lib +607 -0
  440. sage_wheels/share/singular/LIB/rwalk.lib +336 -0
  441. sage_wheels/share/singular/LIB/sagbi.lib +1353 -0
  442. sage_wheels/share/singular/LIB/sagbiNormaliz.lib +1622 -0
  443. sage_wheels/share/singular/LIB/sagbiNormaliz0.lib +1498 -0
  444. sage_wheels/share/singular/LIB/sagbigrob.lib +449 -0
  445. sage_wheels/share/singular/LIB/schreyer.lib +321 -0
  446. sage_wheels/share/singular/LIB/schubert.lib +2551 -0
  447. sage_wheels/share/singular/LIB/sets.lib +524 -0
  448. sage_wheels/share/singular/LIB/sheafcoh.lib +1663 -0
  449. sage_wheels/share/singular/LIB/signcond.lib +437 -0
  450. sage_wheels/share/singular/LIB/sing.lib +1094 -0
  451. sage_wheels/share/singular/LIB/sing4ti2.lib +419 -0
  452. sage_wheels/share/singular/LIB/solve.lib +2243 -0
  453. sage_wheels/share/singular/LIB/spcurve.lib +1077 -0
  454. sage_wheels/share/singular/LIB/spectrum.lib +62 -0
  455. sage_wheels/share/singular/LIB/sresext.lib +757 -0
  456. sage_wheels/share/singular/LIB/ssi.lib +143 -0
  457. sage_wheels/share/singular/LIB/standard.lib +2769 -0
  458. sage_wheels/share/singular/LIB/stanleyreisner.lib +473 -0
  459. sage_wheels/share/singular/LIB/stdmodule.lib +547 -0
  460. sage_wheels/share/singular/LIB/stratify.lib +1070 -0
  461. sage_wheels/share/singular/LIB/surf.lib +506 -0
  462. sage_wheels/share/singular/LIB/surf_jupyter.lib +223 -0
  463. sage_wheels/share/singular/LIB/surfacesignature.lib +522 -0
  464. sage_wheels/share/singular/LIB/surfex.lib +1462 -0
  465. sage_wheels/share/singular/LIB/swalk.lib +877 -0
  466. sage_wheels/share/singular/LIB/symodstd.lib +1570 -0
  467. sage_wheels/share/singular/LIB/systhreads.lib +74 -0
  468. sage_wheels/share/singular/LIB/tasks.lib +1324 -0
  469. sage_wheels/share/singular/LIB/tateProdCplxNegGrad.lib +2412 -0
  470. sage_wheels/share/singular/LIB/teachstd.lib +858 -0
  471. sage_wheels/share/singular/LIB/template.lib +116 -0
  472. sage_wheels/share/singular/LIB/toric.lib +1119 -0
  473. sage_wheels/share/singular/LIB/transformation.lib +116 -0
  474. sage_wheels/share/singular/LIB/triang.lib +1197 -0
  475. sage_wheels/share/singular/LIB/tropical.lib +8741 -0
  476. sage_wheels/share/singular/LIB/tropicalEllipticCovers.lib +2922 -0
  477. sage_wheels/share/singular/LIB/tropicalNewton.lib +1128 -0
  478. sage_wheels/share/singular/LIB/tst.lib +1108 -0
  479. sage_wheels/share/singular/LIB/weierstr.lib +241 -0
  480. sage_wheels/share/singular/LIB/zeroset.lib +1478 -0
  481. sage_wheels/share/singular/emacs/.emacs-general +184 -0
  482. sage_wheels/share/singular/emacs/.emacs-singular +234 -0
  483. sage_wheels/share/singular/emacs/COPYING +44 -0
  484. sage_wheels/share/singular/emacs/cmd-cmpl.el +241 -0
  485. sage_wheels/share/singular/emacs/ex-cmpl.el +1681 -0
  486. sage_wheels/share/singular/emacs/hlp-cmpl.el +4318 -0
  487. sage_wheels/share/singular/emacs/lib-cmpl.el +179 -0
  488. sage_wheels/share/singular/emacs/singular.el +4273 -0
  489. sage_wheels/share/singular/emacs/singular.xpm +39 -0
  490. sage_wheels/share/singular/singular.idx +5002 -0
@@ -0,0 +1,1681 @@
1
+ ; Do not edit this file: It was automatically generated by cmpl.pl
2
+ (setq singular-examples-alist
3
+ '(
4
+ ("A_L")
5
+ ("A_Z")
6
+ ("absFactorize")
7
+ ("absPrimdecGTZ")
8
+ ("abstractR")
9
+ ("absValue")
10
+ ("Access_to_elements_of_a_user_defined_type")
11
+ ("actionIsProper")
12
+ ("addcol")
13
+ ("addRat")
14
+ ("addrow")
15
+ ("ademRelations")
16
+ ("Adj_div")
17
+ ("adjoint")
18
+ ("adjointIdeal")
19
+ ("admissibleSub")
20
+ ("afaces")
21
+ ("AG_codes")
22
+ ("AGcode_L")
23
+ ("AGcode_Omega")
24
+ ("alexanderpolynomial")
25
+ ("alg_kernel")
26
+ ("algDependent")
27
+ ("algebra_containment")
28
+ ("Algebraic_dependence")
29
+ ("algebraicDependence")
30
+ ("all_lib")
31
+ ("allDoubleExt")
32
+ ("allExtOfLeft")
33
+ ("allExtOfRight")
34
+ ("allPositive")
35
+ ("allprint")
36
+ ("allreal")
37
+ ("allrealst")
38
+ ("allsquarefree")
39
+ ("AltVarEnd")
40
+ ("AltVarStart")
41
+ ("ambientDimension")
42
+ ("Ann")
43
+ ("annfs")
44
+ ("annfs0")
45
+ ("annfs2")
46
+ ("annfsBMI")
47
+ ("annfsParamBM")
48
+ ("annfspecial")
49
+ ("annfsRB")
50
+ ("annil")
51
+ ("annPoly")
52
+ ("annRat")
53
+ ("annRatSyz")
54
+ ("appelF1")
55
+ ("appelF2")
56
+ ("appelF4")
57
+ ("appendWeight2Ord")
58
+ ("applyAdF")
59
+ ("areZeroElements")
60
+ ("ArnoldAction")
61
+ ("arrange")
62
+ ("ASCII")
63
+ ("ASCII_links")
64
+ ("ask")
65
+ ("Assignments_for_user_defined_types")
66
+ ("assPrimes")
67
+ ("Atkin")
68
+ ("attrib")
69
+ ("attrib_1")
70
+ ("attrib_2")
71
+ ("autonom")
72
+ ("autonomDim")
73
+ ("awalk1")
74
+ ("awalk2")
75
+ ("babyGiant")
76
+ ("backward")
77
+ ("bareiss")
78
+ ("Basic_programming")
79
+ ("basicinvariants")
80
+ ("belongSemigroup")
81
+ ("bernstein")
82
+ ("bernsteinBM")
83
+ ("bernsteinLift")
84
+ ("betti")
85
+ ("betti_BR_PLURAL_BR")
86
+ ("Betti_numbers_and_regularity")
87
+ ("bFactor")
88
+ ("bfct")
89
+ ("bfctAnn")
90
+ ("bfctBound")
91
+ ("bfctIdeal")
92
+ ("bfctOneGB")
93
+ ("bfctSyz")
94
+ ("bfctVarAnn")
95
+ ("bfctVarIn")
96
+ ("bigint_declarations")
97
+ ("bigint_expressions")
98
+ ("bigint_operations")
99
+ ("bigintmat_declarations")
100
+ ("bigintmat_expressions")
101
+ ("bigintmat_operations")
102
+ ("bigintmat_type_cast")
103
+ ("binomial")
104
+ ("binomials2intmat")
105
+ ("BINresol")
106
+ ("bistd")
107
+ ("bitrinity")
108
+ ("BlowingUp")
109
+ ("blowUp")
110
+ ("blowup0")
111
+ ("blowUp2")
112
+ ("blowUpBO")
113
+ ("Blowupcenter")
114
+ ("boolean_constant")
115
+ ("boolean_ideal")
116
+ ("boolean_operations")
117
+ ("boolean_poly")
118
+ ("boolean_set")
119
+ ("boolean_std")
120
+ ("BorelCheck")
121
+ ("boundBuFou")
122
+ ("boundDes")
123
+ ("boundposDes")
124
+ ("bracket")
125
+ ("Branches_of_space_curve_singularities")
126
+ ("breakpoint")
127
+ ("BrillNoether")
128
+ ("bubblesort")
129
+ ("busadj")
130
+ ("bvar")
131
+ ("calculateI")
132
+ ("canonicalizeCone")
133
+ ("canonize")
134
+ ("canonMap")
135
+ ("cantoradd")
136
+ ("cantormult")
137
+ ("cantorred")
138
+ ("cardGroup")
139
+ ("CenCharDec")
140
+ ("Center")
141
+ ("center")
142
+ ("CenterBO")
143
+ ("centerRed")
144
+ ("centerVS")
145
+ ("central1st")
146
+ ("central2nd")
147
+ ("centralizer")
148
+ ("centralizerRed")
149
+ ("centralizerVS")
150
+ ("centralizeSet")
151
+ ("CentralQuot")
152
+ ("CentralSaturation")
153
+ ("cgs")
154
+ ("cgsdr")
155
+ ("chaincrit")
156
+ ("changechar")
157
+ ("changeDenominator")
158
+ ("changeord")
159
+ ("changevar")
160
+ ("char")
161
+ ("char_series")
162
+ ("Characteristic_sets")
163
+ ("CharacteristicExponents")
164
+ ("charexp2conductor")
165
+ ("charexp2generators")
166
+ ("charexp2inter")
167
+ ("charexp2multseq")
168
+ ("charexp2poly")
169
+ ("charInfo")
170
+ ("charpoly")
171
+ ("charstr")
172
+ ("charVariety")
173
+ ("checkFactor")
174
+ ("checkRoot")
175
+ ("chineseRem")
176
+ ("chinrem")
177
+ ("chinrestp")
178
+ ("Classification_of_hypersurface_singularities")
179
+ ("classify")
180
+ ("classifyCeq")
181
+ ("cleanunit")
182
+ ("cleardenom")
183
+ ("closed_points")
184
+ ("closetex")
185
+ ("closureFrac")
186
+ ("CM_regularity")
187
+ ("CMtype")
188
+ ("codim")
189
+ ("codimension")
190
+ ("coef")
191
+ ("coeffmod")
192
+ ("coeffs")
193
+ ("coeffs_1")
194
+ ("coHom")
195
+ ("collectDiv")
196
+ ("colrank")
197
+ ("colred")
198
+ ("Command_line_options")
199
+ ("Commands_for_user_defined_types")
200
+ ("commRing")
201
+ ("CompDecomp")
202
+ ("completeReduction")
203
+ ("complexSingType")
204
+ ("ComplexValue")
205
+ ("compress")
206
+ ("Computation_of_Ext")
207
+ ("computemcm")
208
+ ("concat")
209
+ ("coneLink")
210
+ ("coneViaInequalities")
211
+ ("coneViaPoints")
212
+ ("constructblwup")
213
+ ("constructH")
214
+ ("constructlastblwup")
215
+ ("ContactMatrix")
216
+ ("containsAsFace")
217
+ ("containsInCollection")
218
+ ("containsInSupport")
219
+ ("containsPositiveVector")
220
+ ("containsRelatively")
221
+ ("content")
222
+ ("contract")
223
+ ("contraHom")
224
+ ("control")
225
+ ("controlDim")
226
+ ("controlExample")
227
+ ("convertdata")
228
+ ("convexHull")
229
+ ("convexIntersection")
230
+ ("convloc")
231
+ ("coords")
232
+ ("corank")
233
+ ("Cornacchia")
234
+ ("CornacchiaModified")
235
+ ("cornerMonomials")
236
+ ("countPoints")
237
+ ("createBO")
238
+ ("createGradedRingHomomorphism")
239
+ ("createGroup")
240
+ ("createlist")
241
+ ("createQuotientGroup")
242
+ ("createTorsionFreeGroup")
243
+ ("Critical_points")
244
+ ("cup")
245
+ ("cupproduct")
246
+ ("CurveParam")
247
+ ("CurveRes")
248
+ ("cyclic")
249
+ ("cyclotomic")
250
+ ("datetime")
251
+ ("DBM_links")
252
+ ("dbprint")
253
+ ("debug_log")
254
+ ("dec1var")
255
+ ("decimal")
256
+ ("Declaration_of_objects_of_a_user_defined_type")
257
+ ("decode")
258
+ ("decodeCode")
259
+ ("decodeRandom")
260
+ ("decodeRandomFL")
261
+ ("decodeSV")
262
+ ("decoef")
263
+ ("def")
264
+ ("def_declarations")
265
+ ("defined")
266
+ ("defineHomogeneous")
267
+ ("Definition_of_a_user_defined_type")
268
+ ("deform")
269
+ ("Deformations")
270
+ ("defring")
271
+ ("defringp")
272
+ ("defrings")
273
+ ("deg")
274
+ ("degree")
275
+ ("degreeDivisor")
276
+ ("degreeFormalDivisor")
277
+ ("degreepart")
278
+ ("delete")
279
+ ("deleteGenerator")
280
+ ("deleteSublist")
281
+ ("Delta")
282
+ ("delta")
283
+ ("DeltaList")
284
+ ("deltaLoc")
285
+ ("denominator")
286
+ ("Depth")
287
+ ("depth")
288
+ ("depthIdeal")
289
+ ("deRhamCohom")
290
+ ("deRhamCohomIdeal")
291
+ ("derivate")
292
+ ("det")
293
+ ("det_B")
294
+ ("detadj")
295
+ ("determinacy")
296
+ ("determinecenter")
297
+ ("develop")
298
+ ("diag")
299
+ ("diag_test")
300
+ ("diagInvariants")
301
+ ("diff")
302
+ ("diffRat")
303
+ ("difpoly2tex")
304
+ ("dim")
305
+ ("dim_BR_PLURAL_BR")
306
+ ("dim_slocus")
307
+ ("dimension")
308
+ ("dimGradedPart")
309
+ ("dimH")
310
+ ("dimMon")
311
+ ("direct_boolean_poly")
312
+ ("direct_from_boolean_poly")
313
+ ("disc")
314
+ ("discr")
315
+ ("discrepancy")
316
+ ("disp_zdd")
317
+ ("displayHNE")
318
+ ("displayInvariants")
319
+ ("displayMultsequence")
320
+ ("dividelist")
321
+ ("divideUnits")
322
+ ("division")
323
+ ("division_BR_PLURAL_BR")
324
+ ("divisor")
325
+ ("divisorplus")
326
+ ("DLoc")
327
+ ("DLoc0")
328
+ ("Dlocalization")
329
+ ("dmodAction")
330
+ ("dmodActionRat")
331
+ ("dmodGeneralAssumptionCheck")
332
+ ("dmodoublext")
333
+ ("double")
334
+ ("doubleExt")
335
+ ("DsingularLocus")
336
+ ("dsum")
337
+ ("dual_code")
338
+ ("dualCone")
339
+ ("dualPolytope")
340
+ ("dump")
341
+ ("Dynamic_modules")
342
+ ("ecart")
343
+ ("ECoef")
344
+ ("ECPP")
345
+ ("Edatalist")
346
+ ("eexgcdN")
347
+ ("effective")
348
+ ("ehrhartRing")
349
+ ("eigenvals")
350
+ ("eigenvalues")
351
+ ("elemSymmId")
352
+ ("elim")
353
+ ("elim1")
354
+ ("elim2")
355
+ ("eliminate")
356
+ ("eliminate_BR_PLURAL_BR")
357
+ ("eliminateNC")
358
+ ("Elimination")
359
+ ("elimlinearpart")
360
+ ("elimpart")
361
+ ("elimpartanyr")
362
+ ("elimrep")
363
+ ("elimRing")
364
+ ("elimWeight")
365
+ ("ellipticAdd")
366
+ ("ellipticAllPoints")
367
+ ("ellipticMult")
368
+ ("ellipticRandomCurve")
369
+ ("ellipticRandomPoint")
370
+ ("Emaxcont")
371
+ ("embedMat")
372
+ ("emptyFan")
373
+ ("encode")
374
+ ("endvfilt")
375
+ ("engine")
376
+ ("envelope")
377
+ ("EOrdlist")
378
+ ("equalJinI")
379
+ ("equalMultiDeg")
380
+ ("equations")
381
+ ("equidim")
382
+ ("equidimMax")
383
+ ("equidimMaxEHV")
384
+ ("equidimZ")
385
+ ("equiRadical")
386
+ ("Eresol")
387
+ ("ERROR")
388
+ ("errorInsert")
389
+ ("errormap")
390
+ ("errorRand")
391
+ ("esIdeal")
392
+ ("esStratum")
393
+ ("euler")
394
+ ("eval")
395
+ ("evaluate_reynolds")
396
+ ("evaluateFormalDivisor")
397
+ ("evaluatePDivisor")
398
+ ("Example_of_a_procedure_definition_in_a_library:")
399
+ ("Example_of_an_interactive_procedure_definition_and_its_execution:")
400
+ ("Example_of_use_of_@sc{Letterplace}")
401
+ ("execute")
402
+ ("exgcdN")
403
+ ("exp2pt")
404
+ ("expo")
405
+ ("exportNuminvs")
406
+ ("exportto")
407
+ ("Ext")
408
+ ("Ext_R")
409
+ ("extcurve")
410
+ ("extdevelop")
411
+ ("extend")
412
+ ("extendedTensor")
413
+ ("extendring")
414
+ ("extendWeyl")
415
+ ("Exterior")
416
+ ("exteriorBasis")
417
+ ("exteriorPower")
418
+ ("extgcd")
419
+ ("facets")
420
+ ("facFirstShift")
421
+ ("facFirstWeyl")
422
+ ("facGBIdeal")
423
+ ("facstd")
424
+ ("facSubWeyl")
425
+ ("factmodd")
426
+ ("factorgroup")
427
+ ("factorH")
428
+ ("factorial")
429
+ ("Factorization")
430
+ ("factorize")
431
+ ("factorLenstraECM")
432
+ ("fanViaCones")
433
+ ("farey")
434
+ ("fastelim")
435
+ ("fastExpt")
436
+ ("fetch")
437
+ ("fetch_BR_PLURAL_BR")
438
+ ("fetchall")
439
+ ("ffsolve")
440
+ ("fglm")
441
+ ("fglm_solve")
442
+ ("fglmquot")
443
+ ("fibonacci")
444
+ ("find")
445
+ ("findAuto")
446
+ ("findifs_example")
447
+ ("findimAlgebra")
448
+ ("findInvo")
449
+ ("findInvoDiag")
450
+ ("findTorsion")
451
+ ("finduni")
452
+ ("findvars")
453
+ ("Finite_fields")
454
+ ("finiteDiagInvariants")
455
+ ("finitenessTest")
456
+ ("First_index_is_1")
457
+ ("firstoct")
458
+ ("fitting")
459
+ ("fl2poly")
460
+ ("flatten")
461
+ ("flatteningStrat")
462
+ ("formaldivisorplus")
463
+ ("Formatting_output")
464
+ ("forward")
465
+ ("fourier")
466
+ ("fouriersystem")
467
+ ("fprintf")
468
+ ("Free_resolution")
469
+ ("Free_resolutions")
470
+ ("freeGBasis")
471
+ ("freemodule")
472
+ ("freerank")
473
+ ("from_boolean_constant")
474
+ ("from_boolean_ideal")
475
+ ("from_boolean_poly")
476
+ ("from_boolean_set")
477
+ ("frwalk")
478
+ ("fullFan")
479
+ ("fullFan_1")
480
+ ("fullSerreRelations")
481
+ ("Function_without_return_value")
482
+ ("further_hn_proc")
483
+ ("furtherInvar")
484
+ ("fwalk")
485
+ ("G_a_-Invariants")
486
+ ("Gamma")
487
+ ("Gauss-Manin_connection")
488
+ ("Gauss-Manin_connection_1")
489
+ ("Gauss-Manin_connection_2")
490
+ ("gauss_col")
491
+ ("gauss_nf")
492
+ ("gauss_row")
493
+ ("gaussred")
494
+ ("gaussred_pivot")
495
+ ("GBsolve")
496
+ ("GBWeight")
497
+ ("gcd")
498
+ ("gcddivisor")
499
+ ("gcdMon")
500
+ ("gcdN")
501
+ ("gen")
502
+ ("Generalized_Hilbert_Syzygy_Theorem")
503
+ ("generalOrder")
504
+ ("generateG")
505
+ ("generatorsOfLinealitySpace")
506
+ ("generatorsOfSpan")
507
+ ("genericid")
508
+ ("genericity")
509
+ ("genericmat")
510
+ ("genMDSMat")
511
+ ("genoutput")
512
+ ("genSymId")
513
+ ("genus")
514
+ ("getCone")
515
+ ("getdump")
516
+ ("getGradingGroup")
517
+ ("getLattice")
518
+ ("getLinearForms")
519
+ ("getModuleGrading")
520
+ ("getMultiplicity")
521
+ ("getOneVar")
522
+ ("getSmallest")
523
+ ("getVariableWeights")
524
+ ("gitCone")
525
+ ("gitFan")
526
+ ("GKdim")
527
+ ("gkzFan")
528
+ ("GKZsystem")
529
+ ("globalSections")
530
+ ("gmscoeffs")
531
+ ("gmsnf")
532
+ ("gmsring")
533
+ ("goodBasis")
534
+ ("Graded_commutative_algebras__SCA_")
535
+ ("gradeNumber")
536
+ ("gradiator")
537
+ ("graver4ti2")
538
+ ("grobcov")
539
+ ("groebner")
540
+ ("groebner_and_std")
541
+ ("Groebner_basis_conversion")
542
+ ("group_reynolds")
543
+ ("GTZmod")
544
+ ("GTZopt")
545
+ ("gwalk")
546
+ ("Gweights")
547
+ ("H2basis")
548
+ ("Handling_graded_modules")
549
+ ("Hcode")
550
+ ("headStand")
551
+ ("heightZ")
552
+ ("hermiteNormalForm")
553
+ ("hessenberg")
554
+ ("highcorner")
555
+ ("hilb")
556
+ ("hilbert4ti2")
557
+ ("HilbertClassPoly")
558
+ ("hilbertSeries")
559
+ ("hilbPoly")
560
+ ("hilbvec")
561
+ ("hnexpansion")
562
+ ("holonomicRank")
563
+ ("Hom")
564
+ ("hom_kernel")
565
+ ("HomJJ")
566
+ ("homog")
567
+ ("homogfacFirstQWeyl")
568
+ ("homogfacFirstQWeyl_all")
569
+ ("homology")
570
+ ("How_to_use_links")
571
+ ("How_to_use_links_1")
572
+ ("hres")
573
+ ("id2mod")
574
+ ("ideal_declarations")
575
+ ("ideal_declarations_BR_PLURAL_BR")
576
+ ("ideal_expressions")
577
+ ("ideal_expressions_BR_PLURAL_BR")
578
+ ("ideal_operations")
579
+ ("ideal_operations_BR_PLURAL_BR")
580
+ ("idealsimplify")
581
+ ("idealSplit")
582
+ ("Identifier_resolution")
583
+ ("Identifier_resolution_1")
584
+ ("identifyvar")
585
+ ("image_of_variety")
586
+ ("ImageGroup")
587
+ ("imageLattice")
588
+ ("ImageVariety")
589
+ ("imap")
590
+ ("imap_BR_PLURAL_BR")
591
+ ("imapall")
592
+ ("impart")
593
+ ("importfrom")
594
+ ("iMult")
595
+ ("inCenter")
596
+ ("inCentralizer")
597
+ ("indepSet")
598
+ ("indSet")
599
+ ("inequalities")
600
+ ("inForm")
601
+ ("iniD")
602
+ ("init_debug")
603
+ ("initialIdealW")
604
+ ("initialMalgrange")
605
+ ("insert")
606
+ ("insertCone")
607
+ ("insertGenerator")
608
+ ("inSubring")
609
+ ("int_declarations")
610
+ ("int_expressions")
611
+ ("int_operations")
612
+ ("intclMonIdeal")
613
+ ("intclToricRing")
614
+ ("integralBasis")
615
+ ("integralIdeal")
616
+ ("integralModule")
617
+ ("integralSection")
618
+ ("internalfunctions")
619
+ ("interpolate")
620
+ ("interpolation")
621
+ ("interred")
622
+ ("intersect")
623
+ ("intersect_BR_PLURAL_BR")
624
+ ("intersection")
625
+ ("intersectionDiv")
626
+ ("IntersectionMatrix")
627
+ ("intersectionValRingIdeals")
628
+ ("intersectionValRings")
629
+ ("intersectLattices")
630
+ ("intersectMon")
631
+ ("IntersectWithSub")
632
+ ("intersectZ")
633
+ ("intInverse")
634
+ ("intmat2mons")
635
+ ("intmat_declarations")
636
+ ("intmat_expressions")
637
+ ("intmat_operations")
638
+ ("intmat_type_cast")
639
+ ("intPart")
640
+ ("intRank")
641
+ ("intRoot")
642
+ ("intRoots")
643
+ ("intvec_declarations")
644
+ ("intvec_expressions")
645
+ ("intvec_operations")
646
+ ("invariant_algebra_perm")
647
+ ("invariant_algebra_reynolds")
648
+ ("invariant_basis")
649
+ ("invariant_basis_reynolds")
650
+ ("invariant_ring")
651
+ ("invariant_ring_random")
652
+ ("InvariantRing")
653
+ ("invariantRing")
654
+ ("invariants")
655
+ ("Invariants_of_a_finite_group")
656
+ ("Invariants_of_plane_curve_singularities")
657
+ ("inverse")
658
+ ("inverse_B")
659
+ ("inverse_L")
660
+ ("inverseFourier")
661
+ ("invertBirMap")
662
+ ("involution")
663
+ ("invunit")
664
+ ("iostruct")
665
+ ("irred_secondary_char0")
666
+ ("irred_secondary_no_molien")
667
+ ("irreddecMon")
668
+ ("irrRealizationDim")
669
+ ("is_active")
670
+ ("is_bijective")
671
+ ("is_cenBimodule")
672
+ ("is_cenSubbimodule")
673
+ ("is_ci")
674
+ ("is_complex")
675
+ ("is_injective")
676
+ ("is_irred")
677
+ ("is_is")
678
+ ("is_nested")
679
+ ("is_NND")
680
+ ("is_NP")
681
+ ("is_pure")
682
+ ("is_reg")
683
+ ("is_regs")
684
+ ("is_surjective")
685
+ ("is_zero")
686
+ ("isAface")
687
+ ("isAntiEndo")
688
+ ("isartinianMon")
689
+ ("isCartan")
690
+ ("isCentral")
691
+ ("isCI")
692
+ ("isCM")
693
+ ("isCMcod2")
694
+ ("isCommutative")
695
+ ("isCompatible")
696
+ ("isEqualDivisor")
697
+ ("isEquising")
698
+ ("isFlat")
699
+ ("isFsat")
700
+ ("isFullSpace")
701
+ ("isgenericMon")
702
+ ("isGradedRingHomomorphism")
703
+ ("isGroup")
704
+ ("isGroupHomomorphism")
705
+ ("isHolonomic")
706
+ ("isHomogeneous")
707
+ ("ishyper")
708
+ ("isInt")
709
+ ("isIntegralSurjective")
710
+ ("isInvolution")
711
+ ("isirreducibleMon")
712
+ ("isLocallyFree")
713
+ ("isMonomial")
714
+ ("isNC")
715
+ ("isOnCurve")
716
+ ("isoncurve")
717
+ ("isOrigin")
718
+ ("isparam")
719
+ ("isPositive")
720
+ ("isprimaryMon")
721
+ ("isprimeMon")
722
+ ("isPrimitiveSublattice")
723
+ ("isPure")
724
+ ("isPureTensor")
725
+ ("isRational")
726
+ ("isReg")
727
+ ("IsSCA")
728
+ ("isSimplicial")
729
+ ("isSublattice")
730
+ ("isSymmetric")
731
+ ("isTame")
732
+ ("isTorsionFree")
733
+ ("isTwoSidedGB")
734
+ ("isuni")
735
+ ("isUpperTriangular")
736
+ ("isVar")
737
+ ("isWeyl")
738
+ ("isZeroElement")
739
+ ("iv2lp")
740
+ ("iv2lpList")
741
+ ("iv2lpMat")
742
+ ("ivDHilbert")
743
+ ("ivDHilbertSickle")
744
+ ("ivDimCheck")
745
+ ("ivHilbert")
746
+ ("ivKDim")
747
+ ("ivL2lpI")
748
+ ("ivMis2Base")
749
+ ("ivMis2Dim")
750
+ ("ivOrdMisLex")
751
+ ("ivSickle")
752
+ ("ivSickleDim")
753
+ ("ivSickleHil")
754
+ ("jacob")
755
+ ("Jacobi")
756
+ ("jacoblift")
757
+ ("jacobson")
758
+ ("janet")
759
+ ("jet")
760
+ ("JMarkedScheme")
761
+ ("jOft")
762
+ ("jordan")
763
+ ("jordanbasis")
764
+ ("jordanmatrix")
765
+ ("jordannf")
766
+ ("jungfib")
767
+ ("jungnormal")
768
+ ("jungresolve")
769
+ ("katsura")
770
+ ("kbase")
771
+ ("kbase_BR_PLURAL_BR")
772
+ ("kernel")
773
+ ("Kernel_of_module_homomorphisms")
774
+ ("kernelLattice")
775
+ ("kill")
776
+ ("killall")
777
+ ("killattrib")
778
+ ("kmemory")
779
+ ("kohom")
780
+ ("kontrahom")
781
+ ("koszul")
782
+ ("KoszulHomology")
783
+ ("KScoef")
784
+ ("KSconvert")
785
+ ("KSker")
786
+ ("KSlinear")
787
+ ("KSpencerKernel")
788
+ ("laguerre")
789
+ ("laguerre_solve")
790
+ ("lastvarGeneral")
791
+ ("latticeBasis")
792
+ ("laxfrT")
793
+ ("laxfrX")
794
+ ("lcm")
795
+ ("lcmMon")
796
+ ("lcmN")
797
+ ("lcmofall")
798
+ ("lead")
799
+ ("leadcoef")
800
+ ("leadexp")
801
+ ("leadmonom")
802
+ ("leadmonomial")
803
+ ("Left_and_two-sided_Groebner_bases")
804
+ ("leftInverse")
805
+ ("leftKernel")
806
+ ("LengthSym")
807
+ ("LengthSymElement")
808
+ ("letplaceGBasis")
809
+ ("lex_solve")
810
+ ("LIB")
811
+ ("lieBracket")
812
+ ("lift")
813
+ ("lift_BR_PLURAL_BR")
814
+ ("lift_kbase")
815
+ ("lift_rel_kb")
816
+ ("liftenvelope")
817
+ ("liftstd")
818
+ ("liftstd_BR_PLURAL_BR")
819
+ ("linealityDimension")
820
+ ("linealitySpace")
821
+ ("linear_relations")
822
+ ("LinearActionQ")
823
+ ("linearCombinations")
824
+ ("LinearizeAction")
825
+ ("linearlyEquivalent")
826
+ ("linearMapKernel")
827
+ ("linearpart")
828
+ ("link_declarations")
829
+ ("linReduce")
830
+ ("linReduceIdeal")
831
+ ("linSyzSolve")
832
+ ("list_declarations")
833
+ ("list_expressions")
834
+ ("list_operations")
835
+ ("listvar")
836
+ ("LLL")
837
+ ("lll")
838
+ ("load")
839
+ ("load_1")
840
+ ("Loading_a_library")
841
+ ("localInvar")
842
+ ("localstd")
843
+ ("locAtZero")
844
+ ("locNormal")
845
+ ("locstd")
846
+ ("log2")
847
+ ("Long_coefficients")
848
+ ("lp2iv")
849
+ ("lp2ivId")
850
+ ("lp2lstr")
851
+ ("lpDHilbert")
852
+ ("lpDHilbertSickle")
853
+ ("lpDimCheck")
854
+ ("lpHilbert")
855
+ ("lpId2ivLi")
856
+ ("lpKDim")
857
+ ("lpMis2Base")
858
+ ("lpMis2Dim")
859
+ ("lpMult")
860
+ ("lpNF")
861
+ ("lpOrdMisLex")
862
+ ("lpPower")
863
+ ("lprint")
864
+ ("lpSickle")
865
+ ("lpSickleDim")
866
+ ("lpSickleHil")
867
+ ("lres")
868
+ ("lst2str")
869
+ ("ludecomp")
870
+ ("luinverse")
871
+ ("lusolve")
872
+ ("magnitude")
873
+ ("makeDivisor")
874
+ ("makeFormalDivisor")
875
+ ("makeHeisenberg")
876
+ ("makeLetterplaceRing")
877
+ ("makeMalgrange")
878
+ ("makeModElimRing")
879
+ ("makePDivisor")
880
+ ("makeQsl2")
881
+ ("makeQsl3")
882
+ ("makeQso3")
883
+ ("makeUe6")
884
+ ("makeUe7")
885
+ ("makeUe8")
886
+ ("makeUf4")
887
+ ("makeUg2")
888
+ ("makeUgl")
889
+ ("makeUsl")
890
+ ("makeUsl2")
891
+ ("makeUso10")
892
+ ("makeUso11")
893
+ ("makeUso12")
894
+ ("makeUso5")
895
+ ("makeUso6")
896
+ ("makeUso7")
897
+ ("makeUso8")
898
+ ("makeUso9")
899
+ ("makeUsp1")
900
+ ("makeUsp2")
901
+ ("makeUsp3")
902
+ ("makeUsp4")
903
+ ("makeUsp5")
904
+ ("makeWeyl")
905
+ ("map_BR_PLURAL_BR_operations")
906
+ ("map_declarations")
907
+ ("map_declarations_BR_PLURAL_BR")
908
+ ("map_operations")
909
+ ("mapall")
910
+ ("mapIsFinite")
911
+ ("mapToRatNormCurve")
912
+ ("markov4ti2")
913
+ ("mat_rk")
914
+ ("matbil")
915
+ ("matmult")
916
+ ("matrix_declarations")
917
+ ("matrix_expressions")
918
+ ("matrix_operations")
919
+ ("Matrix_orderings")
920
+ ("Matrix_orderings_1")
921
+ ("matrix_type_cast")
922
+ ("matrixExp")
923
+ ("matrixLog")
924
+ ("matrixsystem")
925
+ ("matrixT1")
926
+ ("Max")
927
+ ("maxabs")
928
+ ("maxcoef")
929
+ ("maxdeg")
930
+ ("maxdeg1")
931
+ ("maxEord")
932
+ ("maxideal")
933
+ ("maximum")
934
+ ("Maximus")
935
+ ("maxIntRoot")
936
+ ("Maxord")
937
+ ("maxZeros")
938
+ ("mdouble")
939
+ ("membershipMon")
940
+ ("memory")
941
+ ("midpoint")
942
+ ("MillerRabin")
943
+ ("milnor")
944
+ ("Milnor_and_Tjurina_number")
945
+ ("milnorcode")
946
+ ("milnornumber")
947
+ ("Min")
948
+ ("minAssChar")
949
+ ("minAssGTZ")
950
+ ("minAssZ")
951
+ ("minbase")
952
+ ("minbaseMon")
953
+ ("mindeg")
954
+ ("mindeg1")
955
+ ("mindist")
956
+ ("minEcart")
957
+ ("MinimalDecomposition")
958
+ ("Minimus")
959
+ ("minIntRoot")
960
+ ("minIntRoot2")
961
+ ("minipoly")
962
+ ("minMult")
963
+ ("minor")
964
+ ("minpoly")
965
+ ("minres")
966
+ ("minres_BR_PLURAL_BR")
967
+ ("Miscellaneous_oddities")
968
+ ("Miscellaneous_oddities_1")
969
+ ("Miscellaneous_oddities_2")
970
+ ("Miscellaneous_oddities_3")
971
+ ("Miscellaneous_oddities_4")
972
+ ("mod2id")
973
+ ("mod2str")
974
+ ("mod_versal")
975
+ ("modality")
976
+ ("modDec")
977
+ ("ModEqn")
978
+ ("modHenselStd")
979
+ ("modNormal")
980
+ ("modS")
981
+ ("modStd")
982
+ ("module_containment")
983
+ ("module_declarations")
984
+ ("module_declarations_BR_PLURAL_BR")
985
+ ("module_operations")
986
+ ("module_operations_BR_PLURAL_BR")
987
+ ("Module_orderings")
988
+ ("Module_orderings_1")
989
+ ("Module_orderings_2")
990
+ ("Module_orderings_3")
991
+ ("modulo")
992
+ ("modulo_BR_PLURAL_BR")
993
+ ("moduloSlim")
994
+ ("molien")
995
+ ("monodromy")
996
+ ("monodromyB")
997
+ ("monomial")
998
+ ("monomialInIdeal")
999
+ ("monomialLcm")
1000
+ ("mons2intmat")
1001
+ ("morsesplit")
1002
+ ("mp_res_mat")
1003
+ ("MPfile_links")
1004
+ ("mpresmat")
1005
+ ("MPtcp_links")
1006
+ ("mres")
1007
+ ("mres_BR_PLURAL_BR")
1008
+ ("mstd")
1009
+ ("msum")
1010
+ ("mtriple")
1011
+ ("mult")
1012
+ ("multBound")
1013
+ ("multcol")
1014
+ ("multdivisor")
1015
+ ("multformaldivisor")
1016
+ ("multi")
1017
+ ("multiDeg")
1018
+ ("multiDegBasis")
1019
+ ("multiDegGroebner")
1020
+ ("multiDegModulo")
1021
+ ("multiDegPartition")
1022
+ ("multiDegResolution")
1023
+ ("multiDegSyzygy")
1024
+ ("multiDegTensor")
1025
+ ("MultiplicitySequence")
1026
+ ("multiplylist")
1027
+ ("multRat")
1028
+ ("multrow")
1029
+ ("multseq2charexp")
1030
+ ("multsequence")
1031
+ ("nameof")
1032
+ ("Names")
1033
+ ("names")
1034
+ ("Names_1")
1035
+ ("Names_2")
1036
+ ("Names_3")
1037
+ ("Names_in_procedures")
1038
+ ("nashmult")
1039
+ ("nc_algebra")
1040
+ ("ncdetection")
1041
+ ("ncExt_R")
1042
+ ("ncHom")
1043
+ ("ncols")
1044
+ ("ncones")
1045
+ ("ncRelations")
1046
+ ("ndcond")
1047
+ ("negatedCone")
1048
+ ("negativedivisor")
1049
+ ("negativeformaldivisor")
1050
+ ("newTest")
1051
+ ("newtonDiag")
1052
+ ("newtonpoly")
1053
+ ("newtonPolytope")
1054
+ ("nf_icis")
1055
+ ("NFMora")
1056
+ ("nmaxcones")
1057
+ ("noether")
1058
+ ("noetherNormal")
1059
+ ("NoetherPosition")
1060
+ ("Nonhyp")
1061
+ ("nonMonomials")
1062
+ ("nonZeroEntry")
1063
+ ("norm")
1064
+ ("normal")
1065
+ ("normalC")
1066
+ ("normalForm")
1067
+ ("normalform")
1068
+ ("normalI")
1069
+ ("normaliz")
1070
+ ("Normalization")
1071
+ ("normalize")
1072
+ ("normalP")
1073
+ ("normalToricRing")
1074
+ ("normalToricRingFromBinomials")
1075
+ ("norTest")
1076
+ ("npar")
1077
+ ("npars")
1078
+ ("nres")
1079
+ ("nres_BR_PLURAL_BR")
1080
+ ("nrows")
1081
+ ("nrroots")
1082
+ ("nrRootsDeterm")
1083
+ ("nrRootsProbab")
1084
+ ("nselect")
1085
+ ("NSplaces")
1086
+ ("nt_solve")
1087
+ ("NullCone")
1088
+ ("number_declarations")
1089
+ ("number_e")
1090
+ ("number_expressions")
1091
+ ("number_operations")
1092
+ ("number_pi")
1093
+ ("numberOfConesOfDimension")
1094
+ ("numerator")
1095
+ ("nvars")
1096
+ ("Objects")
1097
+ ("oneDimBelongSemigroup")
1098
+ ("opentex")
1099
+ ("operatorBM")
1100
+ ("operatorModulo")
1101
+ ("oppose")
1102
+ ("opposite")
1103
+ ("option")
1104
+ ("orbit_variety")
1105
+ ("orbitCones")
1106
+ ("ord")
1107
+ ("ord_test")
1108
+ ("ordstr")
1109
+ ("orthogonalize")
1110
+ ("outer")
1111
+ ("package_declarations")
1112
+ ("pairset")
1113
+ ("par")
1114
+ ("par2varRing")
1115
+ ("paraConic")
1116
+ ("Parallelization_with_MPtcp_links")
1117
+ ("parallelWaitAll")
1118
+ ("parallelWaitFirst")
1119
+ ("parallelWaitN")
1120
+ ("param")
1121
+ ("Parameters")
1122
+ ("parametrizeOrbit")
1123
+ ("paraPlaneCurve")
1124
+ ("pardeg")
1125
+ ("parstr")
1126
+ ("partial_molien")
1127
+ ("PartitionVar")
1128
+ ("ParToVar")
1129
+ ("pause")
1130
+ ("PBW_eqDeg")
1131
+ ("PBW_maxDeg")
1132
+ ("PBW_maxMonom")
1133
+ ("pdivi")
1134
+ ("pdivisorplus")
1135
+ ("PerfectPowerTest")
1136
+ ("permcol")
1137
+ ("permrow")
1138
+ ("permute_L")
1139
+ ("perron")
1140
+ ("PEsolve")
1141
+ ("pFactor")
1142
+ ("PH_ais")
1143
+ ("PH_nais")
1144
+ ("pIntersect")
1145
+ ("pIntersectSyz")
1146
+ ("Pipe_links")
1147
+ ("plainInvariants")
1148
+ ("pmat")
1149
+ ("pnormalf")
1150
+ ("PocklingtonLehmer")
1151
+ ("Polar_curves")
1152
+ ("PollardRho")
1153
+ ("polSol")
1154
+ ("polSolFiniteRank")
1155
+ ("poly")
1156
+ ("poly2list")
1157
+ ("poly2zdd")
1158
+ ("poly_BR_PLURAL_BR")
1159
+ ("poly_declarations")
1160
+ ("poly_declarations_BR_PLURAL_BR")
1161
+ ("poly_expressions")
1162
+ ("poly_expressions_BR_PLURAL_BR")
1163
+ ("poly_operations")
1164
+ ("polytopeViaInequalities")
1165
+ ("polytopeViaPoints")
1166
+ ("polyVars")
1167
+ ("pos_def")
1168
+ ("posweight")
1169
+ ("power")
1170
+ ("power_products")
1171
+ ("powerN")
1172
+ ("powerpolyX")
1173
+ ("powersums")
1174
+ ("powerX")
1175
+ ("preComp")
1176
+ ("preimage")
1177
+ ("preimage_BR_PLURAL_BR")
1178
+ ("preimageLattice")
1179
+ ("preimageLoc")
1180
+ ("preimageNC")
1181
+ ("prepareAss")
1182
+ ("prepEmbDiv")
1183
+ ("prepRealclassify")
1184
+ ("prepSV")
1185
+ ("primary_char0")
1186
+ ("primary_char0_no_molien")
1187
+ ("primary_char0_no_molien_random")
1188
+ ("primary_char0_random")
1189
+ ("primary_charp")
1190
+ ("primary_charp_no_molien")
1191
+ ("primary_charp_no_molien_random")
1192
+ ("primary_charp_random")
1193
+ ("primary_charp_without")
1194
+ ("primary_charp_without_random")
1195
+ ("Primary_decomposition")
1196
+ ("primary_invariants")
1197
+ ("primary_invariants_random")
1198
+ ("PrimdecA")
1199
+ ("PrimdecB")
1200
+ ("primdecGTZ")
1201
+ ("primdecMon")
1202
+ ("primdecSY")
1203
+ ("primdecZ")
1204
+ ("prime")
1205
+ ("primeClosure")
1206
+ ("primecoeffs")
1207
+ ("primefactors")
1208
+ ("primes")
1209
+ ("primitive")
1210
+ ("primitive_extra")
1211
+ ("primitiveSpan")
1212
+ ("primL")
1213
+ ("primList")
1214
+ ("primparam")
1215
+ ("primRoot")
1216
+ ("primTest")
1217
+ ("print")
1218
+ ("Print_command")
1219
+ ("printf")
1220
+ ("printGroup")
1221
+ ("printlevel")
1222
+ ("proc_declaration")
1223
+ ("prodcrit")
1224
+ ("product")
1225
+ ("productgroup")
1226
+ ("projectiveDimension")
1227
+ ("projectLattice")
1228
+ ("proximitymatrix")
1229
+ ("prune")
1230
+ ("psigncnd")
1231
+ ("puiseux2generators")
1232
+ ("purelist")
1233
+ ("purityFiltration")
1234
+ ("purityTriang")
1235
+ ("pushForward")
1236
+ ("pwalk")
1237
+ ("pyobject")
1238
+ ("pyobject_declarations")
1239
+ ("pyobject_expressions")
1240
+ ("pyobject_operations")
1241
+ ("pyobject_related_functions")
1242
+ ("pyobject_related_functions_1")
1243
+ ("pyramid")
1244
+ ("python_eval")
1245
+ ("python_import")
1246
+ ("python_run")
1247
+ ("qbase")
1248
+ ("qepcad")
1249
+ ("qepcadsystem")
1250
+ ("qhmatrix")
1251
+ ("qhspectrum")
1252
+ ("qhweight")
1253
+ ("qminor")
1254
+ ("qrds")
1255
+ ("qring_declaration")
1256
+ ("qring_declaration_BR_PLURAL_BR")
1257
+ ("qslimgb")
1258
+ ("Qso3Casimir")
1259
+ ("quadraticSieve")
1260
+ ("quantMat")
1261
+ ("quickclass")
1262
+ ("quote")
1263
+ ("Quotient")
1264
+ ("quotient")
1265
+ ("quotient_BR_PLURAL_BR")
1266
+ ("Quotient_rings")
1267
+ ("quotientLatticeBasis")
1268
+ ("quotientMon")
1269
+ ("rad_con")
1270
+ ("radical")
1271
+ ("radicalEHV")
1272
+ ("radicalMon")
1273
+ ("radicalZ")
1274
+ ("randcharpoly")
1275
+ ("randlinpoly")
1276
+ ("random")
1277
+ ("randomBinomial")
1278
+ ("randomCheck")
1279
+ ("randomid")
1280
+ ("randomLast")
1281
+ ("randommat")
1282
+ ("randomPoint")
1283
+ ("rank")
1284
+ ("rationalPointConic")
1285
+ ("ratSol")
1286
+ ("ratstd")
1287
+ ("rays")
1288
+ ("read")
1289
+ ("readNmzData")
1290
+ ("realclassify")
1291
+ ("realizationDim")
1292
+ ("realizationDimPoly")
1293
+ ("realmorsesplit")
1294
+ ("realpoly")
1295
+ ("realrad")
1296
+ ("realzero")
1297
+ ("recursive_boolean_poly")
1298
+ ("recursive_from_boolean_poly")
1299
+ ("reduce")
1300
+ ("reduce_BR_PLURAL_BR")
1301
+ ("reduction")
1302
+ ("ReesAlgebra")
1303
+ ("reference_and_shared__experimental_")
1304
+ ("reference_and_shared__experimental__1")
1305
+ ("reference_and_shared__experimental__2")
1306
+ ("reference_and_shared__experimental__3")
1307
+ ("reference_and_shared_operations")
1308
+ ("reference_and_shared_operations_1")
1309
+ ("reference_and_shared_operations_2")
1310
+ ("reference_and_shared_related_functions")
1311
+ ("reference_and_shared_related_functions_1")
1312
+ ("reference_and_shared_related_functions_2")
1313
+ ("reference_declarations")
1314
+ ("reference_expressions")
1315
+ ("regIdeal")
1316
+ ("regMonCurve")
1317
+ ("regularity")
1318
+ ("reiffen")
1319
+ ("rel_orbit_variety")
1320
+ ("relative_orbit_variety")
1321
+ ("relativeInteriorPoint")
1322
+ ("relweight")
1323
+ ("remainder")
1324
+ ("removeCone")
1325
+ ("removepower")
1326
+ ("repart")
1327
+ ("replace")
1328
+ ("res")
1329
+ ("reservedName")
1330
+ ("resfunction")
1331
+ ("reslist")
1332
+ ("resolution_declarations")
1333
+ ("resolution_declarations_BR_PLURAL_BR")
1334
+ ("Resolution_of_singularities")
1335
+ ("resolutiongraph")
1336
+ ("resolve")
1337
+ ("restrictionIdeal")
1338
+ ("restrictionModule")
1339
+ ("resultant")
1340
+ ("Return_type_of_procedures")
1341
+ ("Return_type_of_procedures_1")
1342
+ ("reverse")
1343
+ ("reynolds_molien")
1344
+ ("rho")
1345
+ ("Right_Groebner_bases_and_syzygies")
1346
+ ("rightInverse")
1347
+ ("rightKernel")
1348
+ ("rightModulo")
1349
+ ("rightNF")
1350
+ ("rightNFWeyl")
1351
+ ("rightStd")
1352
+ ("ring_operations")
1353
+ ("ring_operations_BR_PLURAL_BR")
1354
+ ("ringlist")
1355
+ ("ringlist_BR_PLURAL_BR")
1356
+ ("Rings_and_standard_bases")
1357
+ ("Rings_associated_to_monomial_orderings")
1358
+ ("ringtensor")
1359
+ ("ringweights")
1360
+ ("rm_unitcol")
1361
+ ("rm_unitrow")
1362
+ ("rMacaulay")
1363
+ ("rmNmzFiles")
1364
+ ("rmx")
1365
+ ("rncAntiCanonicalMap")
1366
+ ("rncItProjEven")
1367
+ ("rncItProjOdd")
1368
+ ("rootofUnity")
1369
+ ("roots")
1370
+ ("rootsModp")
1371
+ ("round")
1372
+ ("rowred")
1373
+ ("rvar")
1374
+ ("sa_poly_reduce")
1375
+ ("sa_reduce")
1376
+ ("safeVarName")
1377
+ ("sagbi")
1378
+ ("sagbiPart")
1379
+ ("sagbiReduce")
1380
+ ("sagbiSPoly")
1381
+ ("salida")
1382
+ ("sameComponent")
1383
+ ("Sannfs")
1384
+ ("SannfsBFCT")
1385
+ ("Sannfslog")
1386
+ ("SannfsVar")
1387
+ ("sat")
1388
+ ("satiety")
1389
+ ("Saturation")
1390
+ ("scalarProd")
1391
+ ("scheme")
1392
+ ("Schoof")
1393
+ ("SDLoc")
1394
+ ("secondary_and_irreducibles_no_molien")
1395
+ ("secondary_char0")
1396
+ ("secondary_charp")
1397
+ ("secondary_no_molien")
1398
+ ("secondary_not_cohen_macaulay")
1399
+ ("select")
1400
+ ("select1")
1401
+ ("semiCMcod2")
1402
+ ("semidiv")
1403
+ ("semigroup")
1404
+ ("semigroupGenerator")
1405
+ ("separateHNE")
1406
+ ("separator")
1407
+ ("serreRelations")
1408
+ ("setBaseMultigrading")
1409
+ ("setglobalrings")
1410
+ ("setinitials")
1411
+ ("setLetterplaceAttributes")
1412
+ ("setLinearForms")
1413
+ ("setModuleGrading")
1414
+ ("setMultiplicity")
1415
+ ("setNmzDataPath")
1416
+ ("setNmzExecPath")
1417
+ ("setNmzFilename")
1418
+ ("setNmzOption")
1419
+ ("setring")
1420
+ ("ShanksMestre")
1421
+ ("shared_declarations")
1422
+ ("shared_expressions")
1423
+ ("sheafCoh")
1424
+ ("sheafCohBGG")
1425
+ ("sheafCohBGG2")
1426
+ ("shiftPoly")
1427
+ ("short")
1428
+ ("show")
1429
+ ("showgrades")
1430
+ ("showNmzOptions")
1431
+ ("showNuminvs")
1432
+ ("showrecursive")
1433
+ ("sickle")
1434
+ ("signatureBrieskorn")
1435
+ ("signatureL")
1436
+ ("signatureLqf")
1437
+ ("signatureNemethi")
1438
+ ("signaturePuiseux")
1439
+ ("signcnd")
1440
+ ("simplesolver")
1441
+ ("simplex")
1442
+ ("simplexOut")
1443
+ ("simplify")
1444
+ ("simplifyRat")
1445
+ ("singularity")
1446
+ ("size")
1447
+ ("skewmat")
1448
+ ("slim_Groebner_bases")
1449
+ ("slimgb")
1450
+ ("slimgb_BR_PLURAL_BR")
1451
+ ("slocus")
1452
+ ("smith")
1453
+ ("smithNormalForm")
1454
+ ("SolowayStrassen")
1455
+ ("solutionsMod2")
1456
+ ("solve")
1457
+ ("solve_IP")
1458
+ ("solvelinearpart")
1459
+ ("Solving_systems_of_polynomial_equations")
1460
+ ("sort")
1461
+ ("sortandmap")
1462
+ ("sortier")
1463
+ ("sortIntvec")
1464
+ ("sortvars")
1465
+ ("sortvec")
1466
+ ("spadd")
1467
+ ("span")
1468
+ ("sparseHomogIdeal")
1469
+ ("sparseid")
1470
+ ("sparsemat")
1471
+ ("sparsematrix")
1472
+ ("sparsepoly")
1473
+ ("sparsetriag")
1474
+ ("spectralNeg")
1475
+ ("spectrum")
1476
+ ("spectrumnd")
1477
+ ("spgamma")
1478
+ ("spgeomgenus")
1479
+ ("spissemicont")
1480
+ ("split")
1481
+ ("splitring")
1482
+ ("splitting")
1483
+ ("spmilnor")
1484
+ ("spmul")
1485
+ ("spnf")
1486
+ ("spoly")
1487
+ ("sppairs")
1488
+ ("sppnf")
1489
+ ("sppprint")
1490
+ ("spprint")
1491
+ ("sprintf")
1492
+ ("spsemicont")
1493
+ ("spsub")
1494
+ ("sqfrNorm")
1495
+ ("sqr")
1496
+ ("sqrfree")
1497
+ ("squarefree")
1498
+ ("squareRoot")
1499
+ ("sres")
1500
+ ("Ssi_file_links")
1501
+ ("Ssi_tcp_links")
1502
+ ("StabEqn")
1503
+ ("StabEqnId")
1504
+ ("standard")
1505
+ ("startNmz")
1506
+ ("StartOrderingV")
1507
+ ("status")
1508
+ ("std")
1509
+ ("std_BR_PLURAL_BR")
1510
+ ("stdfglm")
1511
+ ("stdhilb")
1512
+ ("string")
1513
+ ("string_declarations")
1514
+ ("string_expressions")
1515
+ ("string_operations")
1516
+ ("string_type_cast")
1517
+ ("StringF")
1518
+ ("stripHNE")
1519
+ ("sturm")
1520
+ ("sturmha")
1521
+ ("sturmhaseq")
1522
+ ("sturmquery")
1523
+ ("sturmseq")
1524
+ ("submat")
1525
+ ("subrInterred")
1526
+ ("subst")
1527
+ ("subst_BR_PLURAL_BR")
1528
+ ("substitute")
1529
+ ("sum")
1530
+ ("sumlist")
1531
+ ("superCommutative")
1532
+ ("swap")
1533
+ ("sym_gauss")
1534
+ ("SymGroup")
1535
+ ("symmat")
1536
+ ("symmetricBasis")
1537
+ ("symmetricPower")
1538
+ ("symmfunc")
1539
+ ("symmStd")
1540
+ ("syModStd")
1541
+ ("symsignature")
1542
+ ("syndrome")
1543
+ ("sys_code")
1544
+ ("sysBin")
1545
+ ("sysCRHT")
1546
+ ("sysCRHTMindist")
1547
+ ("sysFL")
1548
+ ("sysNewton")
1549
+ ("sysQE")
1550
+ ("system")
1551
+ ("syz")
1552
+ ("syz_BR_PLURAL_BR")
1553
+ ("Syzygies")
1554
+ ("T1_and_T2")
1555
+ ("T_1")
1556
+ ("T_12")
1557
+ ("T_2")
1558
+ ("tab")
1559
+ ("tail")
1560
+ ("tangentcone")
1561
+ ("tangentGens")
1562
+ ("tau_es")
1563
+ ("tau_es2")
1564
+ ("tensor")
1565
+ ("tensorMod")
1566
+ ("TestJMark")
1567
+ ("testNCfac")
1568
+ ("testParametrization")
1569
+ ("testPointConic")
1570
+ ("testPrimary")
1571
+ ("tex")
1572
+ ("texcoef")
1573
+ ("texfactorize")
1574
+ ("texmap")
1575
+ ("texname")
1576
+ ("texobj")
1577
+ ("texpoly")
1578
+ ("texproc")
1579
+ ("texring")
1580
+ ("timeFactorize")
1581
+ ("timer")
1582
+ ("timeStd")
1583
+ ("timestep")
1584
+ ("Tjurina")
1585
+ ("tjurina")
1586
+ ("tmatrix")
1587
+ ("tolessvars")
1588
+ ("Tor")
1589
+ ("toric_ideal")
1590
+ ("toric_std")
1591
+ ("torusInvariants")
1592
+ ("totalmultiplicities")
1593
+ ("TRACE")
1594
+ ("trace")
1595
+ ("tracemult")
1596
+ ("Tracing_of_procedures")
1597
+ ("transpose")
1598
+ ("trapezoid")
1599
+ ("triagmatrix")
1600
+ ("triang_solve")
1601
+ ("triangL_solve")
1602
+ ("triangLf_solve")
1603
+ ("triangM_solve")
1604
+ ("triMNewton")
1605
+ ("truncate")
1606
+ ("truncateFast")
1607
+ ("tst_ncfactor")
1608
+ ("twalk")
1609
+ ("twostd")
1610
+ ("type")
1611
+ ("Type_casting")
1612
+ ("typeof")
1613
+ ("u")
1614
+ ("U_D_O")
1615
+ ("uniquePoint")
1616
+ ("unitmat")
1617
+ ("univariate")
1618
+ ("univarpoly")
1619
+ ("updatePairs")
1620
+ ("UpOneMatrix")
1621
+ ("UpperMonomials")
1622
+ ("ures_solve")
1623
+ ("valvars")
1624
+ ("vandermonde")
1625
+ ("vanishId")
1626
+ ("var")
1627
+ ("variables")
1628
+ ("variablesSorted")
1629
+ ("variablesStandard")
1630
+ ("varNum")
1631
+ ("vars2pars")
1632
+ ("varsigns")
1633
+ ("varstr")
1634
+ ("VarToPar")
1635
+ ("vct2str")
1636
+ ("vdim")
1637
+ ("vdim_BR_PLURAL_BR")
1638
+ ("vec2poly")
1639
+ ("vector_declarations")
1640
+ ("vector_expressions")
1641
+ ("vector_operations")
1642
+ ("verify")
1643
+ ("versal")
1644
+ ("vertices")
1645
+ ("vfilt")
1646
+ ("view")
1647
+ ("visualize")
1648
+ ("voice")
1649
+ ("vwfilt")
1650
+ ("waitall")
1651
+ ("waitfirst")
1652
+ ("watchdog")
1653
+ ("wedge")
1654
+ ("Weierstrass")
1655
+ ("weierstrDiv")
1656
+ ("weierstrPrep")
1657
+ ("weight")
1658
+ ("weightedRing")
1659
+ ("weightKB")
1660
+ ("Weyl")
1661
+ ("WeylClosure")
1662
+ ("WeylClosure1")
1663
+ ("whichvariable")
1664
+ ("writeNmzData")
1665
+ ("writeNmzPaths")
1666
+ ("Writing_procedures_and_libraries")
1667
+ ("WSemigroup")
1668
+ ("wUnit")
1669
+ ("wurzel")
1670
+ ("xchange")
1671
+ ("xdvi")
1672
+ ("XLsolve")
1673
+ ("zdd2poly")
1674
+ ("zerodec")
1675
+ ("zeroMod")
1676
+ ("zeroOpt")
1677
+ ("zeroRadical")
1678
+ ("zeroSet")
1679
+ ("zetaDL")
1680
+ ("ZZsolve")
1681
+ ))