passagemath-flint 10.6.1rc10__cp313-cp313-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.
Files changed (361) hide show
  1. passagemath_flint-10.6.1rc10.dist-info/METADATA +122 -0
  2. passagemath_flint-10.6.1rc10.dist-info/RECORD +361 -0
  3. passagemath_flint-10.6.1rc10.dist-info/WHEEL +6 -0
  4. passagemath_flint-10.6.1rc10.dist-info/top_level.txt +2 -0
  5. passagemath_flint.libs/libflint-aecb9cc5.so.21.0.0 +0 -0
  6. passagemath_flint.libs/libgf2x-a4cdec90.so.3.0.0 +0 -0
  7. passagemath_flint.libs/libgfortran-8f1e9814.so.5.0.0 +0 -0
  8. passagemath_flint.libs/libgmp-6e109695.so.10.5.0 +0 -0
  9. passagemath_flint.libs/libgsl-cda90e79.so.28.0.0 +0 -0
  10. passagemath_flint.libs/libmpfi-e3c25853.so.0.0.0 +0 -0
  11. passagemath_flint.libs/libmpfr-82690d50.so.6.2.1 +0 -0
  12. passagemath_flint.libs/libntl-74e7d9a3.so.44.0.1 +0 -0
  13. passagemath_flint.libs/libopenblasp-r0-6dcb67f9.3.29.so +0 -0
  14. passagemath_flint.libs/libquadmath-828275a7.so.0.0.0 +0 -0
  15. sage/all__sagemath_flint.py +29 -0
  16. sage/combinat/all__sagemath_flint.py +1 -0
  17. sage/combinat/posets/all__sagemath_flint.py +1 -0
  18. sage/combinat/posets/hasse_cython_flint.cpython-313-x86_64-linux-gnu.so +0 -0
  19. sage/combinat/posets/hasse_cython_flint.pyx +194 -0
  20. sage/data_structures/all__sagemath_flint.py +1 -0
  21. sage/data_structures/bounded_integer_sequences.cpython-313-x86_64-linux-gnu.so +0 -0
  22. sage/data_structures/bounded_integer_sequences.pxd +62 -0
  23. sage/data_structures/bounded_integer_sequences.pyx +1418 -0
  24. sage/graphs/all__sagemath_flint.py +1 -0
  25. sage/graphs/chrompoly.cpython-313-x86_64-linux-gnu.so +0 -0
  26. sage/graphs/chrompoly.pyx +555 -0
  27. sage/graphs/matchpoly.cpython-313-x86_64-linux-gnu.so +0 -0
  28. sage/graphs/matchpoly.pyx +412 -0
  29. sage/libs/all__sagemath_flint.py +17 -0
  30. sage/libs/arb/__init__.py +1 -0
  31. sage/libs/arb/acb.pxd +154 -0
  32. sage/libs/arb/acb_calc.pxd +9 -0
  33. sage/libs/arb/acb_elliptic.pxd +25 -0
  34. sage/libs/arb/acb_hypgeom.pxd +74 -0
  35. sage/libs/arb/acb_mat.pxd +62 -0
  36. sage/libs/arb/acb_modular.pxd +17 -0
  37. sage/libs/arb/acb_poly.pxd +216 -0
  38. sage/libs/arb/arb.pxd +240 -0
  39. sage/libs/arb/arb_fmpz_poly.pxd +21 -0
  40. sage/libs/arb/arb_hypgeom.pxd +83 -0
  41. sage/libs/arb/arb_wrap.h +34 -0
  42. sage/libs/arb/arf.pxd +131 -0
  43. sage/libs/arb/arith.cpython-313-x86_64-linux-gnu.so +0 -0
  44. sage/libs/arb/arith.pyx +87 -0
  45. sage/libs/arb/bernoulli.pxd +6 -0
  46. sage/libs/arb/mag.pxd +77 -0
  47. sage/libs/arb/types.pxd +37 -0
  48. sage/libs/flint/__init__.py +1 -0
  49. sage/libs/flint/acb.pxd +270 -0
  50. sage/libs/flint/acb_calc.pxd +22 -0
  51. sage/libs/flint/acb_dft.pxd +51 -0
  52. sage/libs/flint/acb_dirichlet.pxd +112 -0
  53. sage/libs/flint/acb_elliptic.pxd +42 -0
  54. sage/libs/flint/acb_hypgeom.pxd +169 -0
  55. sage/libs/flint/acb_macros.pxd +9 -0
  56. sage/libs/flint/acb_mat.pxd +136 -0
  57. sage/libs/flint/acb_mat_macros.pxd +10 -0
  58. sage/libs/flint/acb_modular.pxd +62 -0
  59. sage/libs/flint/acb_poly.pxd +251 -0
  60. sage/libs/flint/acb_poly_macros.pxd +8 -0
  61. sage/libs/flint/acb_theta.pxd +124 -0
  62. sage/libs/flint/acf.pxd +32 -0
  63. sage/libs/flint/aprcl.pxd +84 -0
  64. sage/libs/flint/arb.pxd +382 -0
  65. sage/libs/flint/arb_calc.pxd +31 -0
  66. sage/libs/flint/arb_fmpz_poly.pxd +34 -0
  67. sage/libs/flint/arb_fpwrap.pxd +215 -0
  68. sage/libs/flint/arb_hypgeom.pxd +147 -0
  69. sage/libs/flint/arb_macros.pxd +9 -0
  70. sage/libs/flint/arb_mat.pxd +140 -0
  71. sage/libs/flint/arb_mat_macros.pxd +10 -0
  72. sage/libs/flint/arb_poly.pxd +237 -0
  73. sage/libs/flint/arf.pxd +167 -0
  74. sage/libs/flint/arith.cpython-313-x86_64-linux-gnu.so +0 -0
  75. sage/libs/flint/arith.pxd +76 -0
  76. sage/libs/flint/arith.pyx +77 -0
  77. sage/libs/flint/arith_sage.cpython-313-x86_64-linux-gnu.so +0 -0
  78. sage/libs/flint/arith_sage.pyx +308 -0
  79. sage/libs/flint/bernoulli.pxd +28 -0
  80. sage/libs/flint/bool_mat.pxd +52 -0
  81. sage/libs/flint/ca.pxd +203 -0
  82. sage/libs/flint/ca_ext.pxd +34 -0
  83. sage/libs/flint/ca_field.pxd +32 -0
  84. sage/libs/flint/ca_mat.pxd +117 -0
  85. sage/libs/flint/ca_poly.pxd +104 -0
  86. sage/libs/flint/ca_vec.pxd +46 -0
  87. sage/libs/flint/calcium.pxd +27 -0
  88. sage/libs/flint/d_mat.pxd +39 -0
  89. sage/libs/flint/d_vec.pxd +32 -0
  90. sage/libs/flint/dirichlet.pxd +57 -0
  91. sage/libs/flint/dlog.pxd +53 -0
  92. sage/libs/flint/double_extras.pxd +24 -0
  93. sage/libs/flint/double_interval.pxd +36 -0
  94. sage/libs/flint/fexpr.pxd +104 -0
  95. sage/libs/flint/fexpr_builtin.pxd +20 -0
  96. sage/libs/flint/fft.pxd +66 -0
  97. sage/libs/flint/flint.pxd +36 -0
  98. sage/libs/flint/flint_ntl_wrap.h +35 -0
  99. sage/libs/flint/flint_sage.cpython-313-x86_64-linux-gnu.so +0 -0
  100. sage/libs/flint/flint_sage.pyx +163 -0
  101. sage/libs/flint/flint_wrap.h +190 -0
  102. sage/libs/flint/fmpq.pxd +137 -0
  103. sage/libs/flint/fmpq_mat.pxd +105 -0
  104. sage/libs/flint/fmpq_mat_macros.pxd +10 -0
  105. sage/libs/flint/fmpq_mpoly.pxd +165 -0
  106. sage/libs/flint/fmpq_mpoly_factor.pxd +30 -0
  107. sage/libs/flint/fmpq_poly.pxd +241 -0
  108. sage/libs/flint/fmpq_poly_macros.pxd +9 -0
  109. sage/libs/flint/fmpq_poly_sage.cpython-313-x86_64-linux-gnu.so +0 -0
  110. sage/libs/flint/fmpq_poly_sage.pxd +31 -0
  111. sage/libs/flint/fmpq_poly_sage.pyx +48 -0
  112. sage/libs/flint/fmpq_vec.pxd +27 -0
  113. sage/libs/flint/fmpz.pxd +256 -0
  114. sage/libs/flint/fmpz_extras.pxd +32 -0
  115. sage/libs/flint/fmpz_factor.pxd +42 -0
  116. sage/libs/flint/fmpz_factor_sage.cpython-313-x86_64-linux-gnu.so +0 -0
  117. sage/libs/flint/fmpz_factor_sage.pxd +4 -0
  118. sage/libs/flint/fmpz_factor_sage.pyx +29 -0
  119. sage/libs/flint/fmpz_lll.pxd +49 -0
  120. sage/libs/flint/fmpz_macros.pxd +8 -0
  121. sage/libs/flint/fmpz_mat.pxd +184 -0
  122. sage/libs/flint/fmpz_mat_macros.pxd +10 -0
  123. sage/libs/flint/fmpz_mod.pxd +46 -0
  124. sage/libs/flint/fmpz_mod_mat.pxd +71 -0
  125. sage/libs/flint/fmpz_mod_mpoly.pxd +161 -0
  126. sage/libs/flint/fmpz_mod_mpoly_factor.pxd +28 -0
  127. sage/libs/flint/fmpz_mod_poly.pxd +249 -0
  128. sage/libs/flint/fmpz_mod_poly_factor.pxd +46 -0
  129. sage/libs/flint/fmpz_mod_vec.pxd +27 -0
  130. sage/libs/flint/fmpz_mpoly.pxd +224 -0
  131. sage/libs/flint/fmpz_mpoly_factor.pxd +29 -0
  132. sage/libs/flint/fmpz_mpoly_q.pxd +57 -0
  133. sage/libs/flint/fmpz_poly.cpython-313-x86_64-linux-gnu.so +0 -0
  134. sage/libs/flint/fmpz_poly.pxd +407 -0
  135. sage/libs/flint/fmpz_poly.pyx +19 -0
  136. sage/libs/flint/fmpz_poly_factor.pxd +33 -0
  137. sage/libs/flint/fmpz_poly_macros.pxd +8 -0
  138. sage/libs/flint/fmpz_poly_mat.pxd +71 -0
  139. sage/libs/flint/fmpz_poly_q.pxd +55 -0
  140. sage/libs/flint/fmpz_poly_sage.cpython-313-x86_64-linux-gnu.so +0 -0
  141. sage/libs/flint/fmpz_poly_sage.pxd +20 -0
  142. sage/libs/flint/fmpz_poly_sage.pyx +500 -0
  143. sage/libs/flint/fmpz_vec.pxd +80 -0
  144. sage/libs/flint/fmpzi.pxd +52 -0
  145. sage/libs/flint/fq.pxd +97 -0
  146. sage/libs/flint/fq_default.pxd +84 -0
  147. sage/libs/flint/fq_default_mat.pxd +70 -0
  148. sage/libs/flint/fq_default_poly.pxd +97 -0
  149. sage/libs/flint/fq_default_poly_factor.pxd +39 -0
  150. sage/libs/flint/fq_embed.pxd +28 -0
  151. sage/libs/flint/fq_mat.pxd +83 -0
  152. sage/libs/flint/fq_nmod.pxd +95 -0
  153. sage/libs/flint/fq_nmod_embed.pxd +28 -0
  154. sage/libs/flint/fq_nmod_mat.pxd +83 -0
  155. sage/libs/flint/fq_nmod_mpoly.pxd +130 -0
  156. sage/libs/flint/fq_nmod_mpoly_factor.pxd +28 -0
  157. sage/libs/flint/fq_nmod_poly.pxd +202 -0
  158. sage/libs/flint/fq_nmod_poly_factor.pxd +47 -0
  159. sage/libs/flint/fq_nmod_vec.pxd +33 -0
  160. sage/libs/flint/fq_poly.pxd +204 -0
  161. sage/libs/flint/fq_poly_factor.pxd +47 -0
  162. sage/libs/flint/fq_vec.pxd +33 -0
  163. sage/libs/flint/fq_zech.pxd +99 -0
  164. sage/libs/flint/fq_zech_embed.pxd +28 -0
  165. sage/libs/flint/fq_zech_mat.pxd +78 -0
  166. sage/libs/flint/fq_zech_poly.pxd +198 -0
  167. sage/libs/flint/fq_zech_poly_factor.pxd +47 -0
  168. sage/libs/flint/fq_zech_vec.pxd +33 -0
  169. sage/libs/flint/gr.pxd +174 -0
  170. sage/libs/flint/gr_generic.pxd +215 -0
  171. sage/libs/flint/gr_mat.pxd +161 -0
  172. sage/libs/flint/gr_mpoly.pxd +68 -0
  173. sage/libs/flint/gr_poly.pxd +276 -0
  174. sage/libs/flint/gr_special.pxd +237 -0
  175. sage/libs/flint/gr_vec.pxd +120 -0
  176. sage/libs/flint/hypgeom.pxd +24 -0
  177. sage/libs/flint/long_extras.pxd +23 -0
  178. sage/libs/flint/mag.pxd +131 -0
  179. sage/libs/flint/mag_macros.pxd +8 -0
  180. sage/libs/flint/mpf_mat.pxd +36 -0
  181. sage/libs/flint/mpf_vec.pxd +34 -0
  182. sage/libs/flint/mpfr_mat.pxd +27 -0
  183. sage/libs/flint/mpfr_vec.pxd +25 -0
  184. sage/libs/flint/mpn_extras.pxd +41 -0
  185. sage/libs/flint/mpoly.pxd +72 -0
  186. sage/libs/flint/nf.pxd +19 -0
  187. sage/libs/flint/nf_elem.pxd +74 -0
  188. sage/libs/flint/nmod.pxd +35 -0
  189. sage/libs/flint/nmod_mat.pxd +104 -0
  190. sage/libs/flint/nmod_mpoly.pxd +144 -0
  191. sage/libs/flint/nmod_mpoly_factor.pxd +28 -0
  192. sage/libs/flint/nmod_poly.pxd +339 -0
  193. sage/libs/flint/nmod_poly_factor.pxd +44 -0
  194. sage/libs/flint/nmod_poly_linkage.pxi +710 -0
  195. sage/libs/flint/nmod_poly_mat.pxd +76 -0
  196. sage/libs/flint/nmod_vec.pxd +40 -0
  197. sage/libs/flint/ntl_interface.pxd +17 -0
  198. sage/libs/flint/padic.pxd +93 -0
  199. sage/libs/flint/padic_mat.pxd +64 -0
  200. sage/libs/flint/padic_poly.pxd +88 -0
  201. sage/libs/flint/partitions.pxd +23 -0
  202. sage/libs/flint/perm.pxd +26 -0
  203. sage/libs/flint/profiler.pxd +24 -0
  204. sage/libs/flint/qadic.pxd +77 -0
  205. sage/libs/flint/qfb.pxd +44 -0
  206. sage/libs/flint/qqbar.pxd +172 -0
  207. sage/libs/flint/qsieve.cpython-313-x86_64-linux-gnu.so +0 -0
  208. sage/libs/flint/qsieve.pxd +41 -0
  209. sage/libs/flint/qsieve.pyx +21 -0
  210. sage/libs/flint/qsieve_sage.cpython-313-x86_64-linux-gnu.so +0 -0
  211. sage/libs/flint/qsieve_sage.pyx +67 -0
  212. sage/libs/flint/thread_pool.pxd +25 -0
  213. sage/libs/flint/types.pxd +2076 -0
  214. sage/libs/flint/ulong_extras.cpython-313-x86_64-linux-gnu.so +0 -0
  215. sage/libs/flint/ulong_extras.pxd +141 -0
  216. sage/libs/flint/ulong_extras.pyx +21 -0
  217. sage/libs/flint/ulong_extras_sage.cpython-313-x86_64-linux-gnu.so +0 -0
  218. sage/libs/flint/ulong_extras_sage.pyx +21 -0
  219. sage/matrix/all__sagemath_flint.py +1 -0
  220. sage/matrix/change_ring.cpython-313-x86_64-linux-gnu.so +0 -0
  221. sage/matrix/change_ring.pyx +43 -0
  222. sage/matrix/matrix_complex_ball_dense.cpython-313-x86_64-linux-gnu.so +0 -0
  223. sage/matrix/matrix_complex_ball_dense.pxd +14 -0
  224. sage/matrix/matrix_complex_ball_dense.pyx +973 -0
  225. sage/matrix/matrix_cyclo_dense.cpython-313-x86_64-linux-gnu.so +0 -0
  226. sage/matrix/matrix_cyclo_dense.pxd +16 -0
  227. sage/matrix/matrix_cyclo_dense.pyx +1761 -0
  228. sage/matrix/matrix_integer_dense.cpython-313-x86_64-linux-gnu.so +0 -0
  229. sage/matrix/matrix_integer_dense.pxd +32 -0
  230. sage/matrix/matrix_integer_dense.pyx +5801 -0
  231. sage/matrix/matrix_integer_dense_hnf.py +1294 -0
  232. sage/matrix/matrix_integer_dense_saturation.py +346 -0
  233. sage/matrix/matrix_integer_sparse.cpython-313-x86_64-linux-gnu.so +0 -0
  234. sage/matrix/matrix_integer_sparse.pxd +9 -0
  235. sage/matrix/matrix_integer_sparse.pyx +1090 -0
  236. sage/matrix/matrix_rational_dense.cpython-313-x86_64-linux-gnu.so +0 -0
  237. sage/matrix/matrix_rational_dense.pxd +23 -0
  238. sage/matrix/matrix_rational_dense.pyx +2995 -0
  239. sage/matrix/matrix_rational_sparse.cpython-313-x86_64-linux-gnu.so +0 -0
  240. sage/matrix/matrix_rational_sparse.pxd +11 -0
  241. sage/matrix/matrix_rational_sparse.pyx +789 -0
  242. sage/matrix/misc_flint.cpython-313-x86_64-linux-gnu.so +0 -0
  243. sage/matrix/misc_flint.pyx +109 -0
  244. sage/modular/all__sagemath_flint.py +1 -0
  245. sage/modular/modform/all__sagemath_flint.py +1 -0
  246. sage/modular/modform/eis_series_cython.cpython-313-x86_64-linux-gnu.so +0 -0
  247. sage/modular/modform/eis_series_cython.pyx +226 -0
  248. sage/modular/modsym/all__sagemath_flint.py +1 -0
  249. sage/modular/modsym/apply.cpython-313-x86_64-linux-gnu.so +0 -0
  250. sage/modular/modsym/apply.pxd +6 -0
  251. sage/modular/modsym/apply.pyx +113 -0
  252. sage/modular/modsym/heilbronn.cpython-313-x86_64-linux-gnu.so +0 -0
  253. sage/modular/modsym/heilbronn.pyx +966 -0
  254. sage/modular/pollack_stevens/all__sagemath_flint.py +1 -0
  255. sage/modular/pollack_stevens/dist.cpython-313-x86_64-linux-gnu.so +0 -0
  256. sage/modular/pollack_stevens/dist.pxd +38 -0
  257. sage/modular/pollack_stevens/dist.pyx +1439 -0
  258. sage/quivers/algebra.py +691 -0
  259. sage/quivers/algebra_elements.cpython-313-x86_64-linux-gnu.so +0 -0
  260. sage/quivers/algebra_elements.pxd +97 -0
  261. sage/quivers/algebra_elements.pxi +1324 -0
  262. sage/quivers/algebra_elements.pyx +1424 -0
  263. sage/quivers/all.py +1 -0
  264. sage/quivers/ar_quiver.py +917 -0
  265. sage/quivers/homspace.py +640 -0
  266. sage/quivers/morphism.py +1282 -0
  267. sage/quivers/path_semigroup.py +1155 -0
  268. sage/quivers/paths.cpython-313-x86_64-linux-gnu.so +0 -0
  269. sage/quivers/paths.pxd +13 -0
  270. sage/quivers/paths.pyx +809 -0
  271. sage/quivers/representation.py +2975 -0
  272. sage/rings/all__sagemath_flint.py +37 -0
  273. sage/rings/cif.py +4 -0
  274. sage/rings/complex_arb.cpython-313-x86_64-linux-gnu.so +0 -0
  275. sage/rings/complex_arb.pxd +29 -0
  276. sage/rings/complex_arb.pyx +5176 -0
  277. sage/rings/complex_interval.cpython-313-x86_64-linux-gnu.so +0 -0
  278. sage/rings/complex_interval.pxd +30 -0
  279. sage/rings/complex_interval.pyx +2475 -0
  280. sage/rings/complex_interval_field.py +711 -0
  281. sage/rings/convert/all.py +1 -0
  282. sage/rings/convert/mpfi.cpython-313-x86_64-linux-gnu.so +0 -0
  283. sage/rings/convert/mpfi.pxd +6 -0
  284. sage/rings/convert/mpfi.pyx +576 -0
  285. sage/rings/factorint_flint.cpython-313-x86_64-linux-gnu.so +0 -0
  286. sage/rings/factorint_flint.pyx +99 -0
  287. sage/rings/fraction_field_FpT.cpython-313-x86_64-linux-gnu.so +0 -0
  288. sage/rings/fraction_field_FpT.pxd +28 -0
  289. sage/rings/fraction_field_FpT.pyx +2043 -0
  290. sage/rings/imaginary_unit.py +5 -0
  291. sage/rings/monomials.py +73 -0
  292. sage/rings/number_field/S_unit_solver.py +2870 -0
  293. sage/rings/number_field/all__sagemath_flint.py +7 -0
  294. sage/rings/number_field/bdd_height.py +664 -0
  295. sage/rings/number_field/class_group.py +762 -0
  296. sage/rings/number_field/galois_group.py +1307 -0
  297. sage/rings/number_field/homset.py +612 -0
  298. sage/rings/number_field/maps.py +687 -0
  299. sage/rings/number_field/morphism.py +272 -0
  300. sage/rings/number_field/number_field.py +12820 -0
  301. sage/rings/number_field/number_field_element.cpython-313-x86_64-linux-gnu.so +0 -0
  302. sage/rings/number_field/number_field_element.pxd +59 -0
  303. sage/rings/number_field/number_field_element.pyx +5735 -0
  304. sage/rings/number_field/number_field_element_quadratic.cpython-313-x86_64-linux-gnu.so +0 -0
  305. sage/rings/number_field/number_field_element_quadratic.pxd +34 -0
  306. sage/rings/number_field/number_field_element_quadratic.pyx +3185 -0
  307. sage/rings/number_field/number_field_ideal_rel.py +925 -0
  308. sage/rings/number_field/number_field_morphisms.cpython-313-x86_64-linux-gnu.so +0 -0
  309. sage/rings/number_field/number_field_morphisms.pyx +781 -0
  310. sage/rings/number_field/number_field_rel.py +2734 -0
  311. sage/rings/number_field/order.py +2981 -0
  312. sage/rings/number_field/order_ideal.py +804 -0
  313. sage/rings/number_field/selmer_group.py +715 -0
  314. sage/rings/number_field/small_primes_of_degree_one.py +242 -0
  315. sage/rings/number_field/splitting_field.py +606 -0
  316. sage/rings/number_field/structure.py +380 -0
  317. sage/rings/number_field/unit_group.py +721 -0
  318. sage/rings/padics/all__sagemath_flint.py +3 -0
  319. sage/rings/polynomial/all__sagemath_flint.py +1 -0
  320. sage/rings/polynomial/complex_roots.py +312 -0
  321. sage/rings/polynomial/evaluation_flint.cpython-313-x86_64-linux-gnu.so +0 -0
  322. sage/rings/polynomial/evaluation_flint.pxd +7 -0
  323. sage/rings/polynomial/evaluation_flint.pyx +68 -0
  324. sage/rings/polynomial/hilbert.cpython-313-x86_64-linux-gnu.so +0 -0
  325. sage/rings/polynomial/hilbert.pyx +602 -0
  326. sage/rings/polynomial/polynomial_complex_arb.cpython-313-x86_64-linux-gnu.so +0 -0
  327. sage/rings/polynomial/polynomial_complex_arb.pxd +7 -0
  328. sage/rings/polynomial/polynomial_complex_arb.pyx +963 -0
  329. sage/rings/polynomial/polynomial_integer_dense_flint.cpython-313-x86_64-linux-gnu.so +0 -0
  330. sage/rings/polynomial/polynomial_integer_dense_flint.pxd +13 -0
  331. sage/rings/polynomial/polynomial_integer_dense_flint.pyx +1881 -0
  332. sage/rings/polynomial/polynomial_number_field.cpython-313-x86_64-linux-gnu.so +0 -0
  333. sage/rings/polynomial/polynomial_number_field.pyx +345 -0
  334. sage/rings/polynomial/polynomial_rational_flint.cpython-313-x86_64-linux-gnu.so +0 -0
  335. sage/rings/polynomial/polynomial_rational_flint.pxd +20 -0
  336. sage/rings/polynomial/polynomial_rational_flint.pyx +2598 -0
  337. sage/rings/polynomial/polynomial_zmod_flint.cpython-313-x86_64-linux-gnu.so +0 -0
  338. sage/rings/polynomial/polynomial_zmod_flint.pxd +20 -0
  339. sage/rings/polynomial/polynomial_zmod_flint.pyx +1063 -0
  340. sage/rings/polynomial/real_roots.cpython-313-x86_64-linux-gnu.so +0 -0
  341. sage/rings/polynomial/real_roots.pxd +81 -0
  342. sage/rings/polynomial/real_roots.pyx +4704 -0
  343. sage/rings/polynomial/refine_root.cpython-313-x86_64-linux-gnu.so +0 -0
  344. sage/rings/polynomial/refine_root.pyx +142 -0
  345. sage/rings/polynomial/weil/all.py +4 -0
  346. sage/rings/polynomial/weil/power_sums.h +46 -0
  347. sage/rings/polynomial/weil/weil_polynomials.cpython-313-x86_64-linux-gnu.so +0 -0
  348. sage/rings/polynomial/weil/weil_polynomials.pyx +596 -0
  349. sage/rings/qqbar.py +9025 -0
  350. sage/rings/real_arb.cpython-313-x86_64-linux-gnu.so +0 -0
  351. sage/rings/real_arb.pxd +21 -0
  352. sage/rings/real_arb.pyx +4065 -0
  353. sage/rings/real_interval_absolute.cpython-313-x86_64-linux-gnu.so +0 -0
  354. sage/rings/real_interval_absolute.pyx +1073 -0
  355. sage/rings/real_mpfi.cpython-313-x86_64-linux-gnu.so +0 -0
  356. sage/rings/real_mpfi.pyx +5428 -0
  357. sage/schemes/all__sagemath_flint.py +1 -0
  358. sage/schemes/elliptic_curves/all__sagemath_flint.py +1 -0
  359. sage/schemes/elliptic_curves/descent_two_isogeny.cpython-313-x86_64-linux-gnu.so +0 -0
  360. sage/schemes/elliptic_curves/descent_two_isogeny.pyx +1387 -0
  361. sage/schemes/elliptic_curves/descent_two_isogeny_pari.pxd +5 -0
sage/libs/arb/arf.pxd ADDED
@@ -0,0 +1,131 @@
1
+ # sage_setup: distribution = sagemath-flint
2
+ # Deprecated header file; use sage/libs/flint/arf.pxd instead
3
+ # See https://github.com/sagemath/sage/pull/36449
4
+
5
+ from sage.libs.flint.types cimport arf_t
6
+
7
+ from sage.libs.flint.arf cimport (
8
+ arf_init,
9
+ arf_clear,
10
+ arf_zero,
11
+ arf_one,
12
+ arf_pos_inf,
13
+ arf_neg_inf,
14
+ arf_nan,
15
+ arf_is_zero,
16
+ arf_is_one,
17
+ arf_is_pos_inf,
18
+ arf_is_neg_inf,
19
+ arf_is_nan,
20
+ arf_is_inf,
21
+ arf_is_normal,
22
+ arf_is_special,
23
+ arf_is_finite,
24
+ arf_set,
25
+ arf_set_mpz,
26
+ arf_set_fmpz,
27
+ arf_set_ui,
28
+ arf_set_si,
29
+ arf_set_mpfr,
30
+ arf_set_d,
31
+ arf_swap,
32
+ arf_init_set_ui,
33
+ arf_init_set_si,
34
+ arf_set_round,
35
+ arf_set_round_si,
36
+ arf_set_round_ui,
37
+ arf_set_round_mpz,
38
+ arf_set_round_fmpz,
39
+ arf_set_si_2exp_si,
40
+ arf_set_ui_2exp_si,
41
+ arf_set_fmpz_2exp,
42
+ arf_set_round_fmpz_2exp,
43
+ arf_get_fmpz_2exp,
44
+ arf_get_d,
45
+ arf_get_mpfr,
46
+ arf_get_fmpz,
47
+ arf_get_si,
48
+ arf_get_fmpz_fixed_fmpz,
49
+ arf_get_fmpz_fixed_si,
50
+ arf_floor,
51
+ arf_ceil,
52
+ arf_equal,
53
+ arf_equal_si,
54
+ arf_cmp,
55
+ arf_cmpabs,
56
+ arf_cmpabs_ui,
57
+ arf_cmpabs_mag,
58
+ arf_cmp_2exp_si,
59
+ arf_cmpabs_2exp_si,
60
+ arf_sgn,
61
+ arf_min,
62
+ arf_max,
63
+ arf_bits,
64
+ arf_is_int,
65
+ arf_is_int_2exp_si,
66
+ arf_abs_bound_lt_2exp_fmpz,
67
+ arf_abs_bound_le_2exp_fmpz,
68
+ arf_abs_bound_lt_2exp_si,
69
+ arf_get_mag,
70
+ arf_get_mag_lower,
71
+ arf_set_mag,
72
+ mag_init_set_arf,
73
+ mag_fast_init_set_arf,
74
+ arf_mag_set_ulp,
75
+ arf_mag_add_ulp,
76
+ arf_mag_fast_add_ulp,
77
+ arf_init_set_shallow,
78
+ arf_init_set_mag_shallow,
79
+ arf_init_neg_shallow,
80
+ arf_init_neg_mag_shallow,
81
+ arf_randtest,
82
+ arf_randtest_not_zero,
83
+ arf_randtest_special,
84
+ arf_debug,
85
+ arf_print,
86
+ arf_printd,
87
+ arf_abs,
88
+ arf_neg,
89
+ arf_neg_round,
90
+ arf_mul_2exp_si,
91
+ arf_mul_2exp_fmpz,
92
+ arf_mul,
93
+ arf_mul_ui,
94
+ arf_mul_si,
95
+ arf_mul_mpz,
96
+ arf_mul_fmpz,
97
+ arf_add,
98
+ arf_add_si,
99
+ arf_add_ui,
100
+ arf_add_fmpz,
101
+ arf_add_fmpz_2exp,
102
+ arf_sub,
103
+ arf_sub_si,
104
+ arf_sub_ui,
105
+ arf_sub_fmpz,
106
+ arf_addmul,
107
+ arf_addmul_ui,
108
+ arf_addmul_si,
109
+ arf_addmul_mpz,
110
+ arf_addmul_fmpz,
111
+ arf_submul,
112
+ arf_submul_ui,
113
+ arf_submul_si,
114
+ arf_submul_mpz,
115
+ arf_submul_fmpz,
116
+ arf_sum,
117
+ arf_div,
118
+ arf_div_ui,
119
+ arf_ui_div,
120
+ arf_div_si,
121
+ arf_si_div,
122
+ arf_div_fmpz,
123
+ arf_fmpz_div,
124
+ arf_fmpz_div_fmpz,
125
+ arf_sqrt,
126
+ arf_sqrt_ui,
127
+ arf_sqrt_fmpz,
128
+ arf_rsqrt,
129
+ arf_complex_mul,
130
+ arf_complex_mul_fallback,
131
+ arf_complex_sqr)
@@ -0,0 +1,87 @@
1
+ # sage_setup: distribution = sagemath-flint
2
+ """
3
+ Arithmetic functions using the arb library
4
+ """
5
+
6
+ # ****************************************************************************
7
+ # Copyright (C) 2016 Jeroen Demeyer <jdemeyer@cage.ugent.be>
8
+ #
9
+ # This program is free software: you can redistribute it and/or modify
10
+ # it under the terms of the GNU General Public License as published by
11
+ # the Free Software Foundation, either version 2 of the License, or
12
+ # (at your option) any later version.
13
+ # https://www.gnu.org/licenses/
14
+ # ****************************************************************************
15
+
16
+ from sage.libs.flint.types cimport ulong
17
+ from sage.libs.flint.fmpq cimport fmpq_t, fmpq_init, fmpq_clear, fmpq_get_mpq
18
+ from sage.libs.arb.bernoulli cimport bernoulli_fmpq_ui
19
+ from sage.libs.arb.acb_modular cimport acb_modular_hilbert_class_poly
20
+ from sage.rings.rational cimport Rational
21
+ from sage.rings.polynomial.polynomial_integer_dense_flint cimport Polynomial_integer_dense_flint
22
+ from sage.rings.polynomial.polynomial_ring_constructor import PolynomialRing
23
+ from sage.rings.integer_ring import ZZ
24
+
25
+
26
+ def bernoulli(n):
27
+ """
28
+ Return the ``n``-th Bernoulli number using ``arb``.
29
+
30
+ INPUT:
31
+
32
+ - ``n`` -- unsigned integer
33
+
34
+ OUTPUT: a rational number
35
+
36
+ EXAMPLES::
37
+
38
+ sage: from sage.libs.arb.arith import bernoulli
39
+ sage: bernoulli(24)
40
+ -236364091/2730
41
+ sage: bernoulli(0)
42
+ 1
43
+ sage: bernoulli(1)
44
+ -1/2
45
+
46
+ TESTS::
47
+
48
+ sage: bernoulli(-1)
49
+ Traceback (most recent call last):
50
+ ...
51
+ OverflowError: can...t convert negative value to mp_limb_t
52
+ """
53
+ cdef ulong i = n
54
+ cdef Rational q = <Rational>Rational.__new__(Rational)
55
+ cdef fmpq_t x
56
+ fmpq_init(x)
57
+ bernoulli_fmpq_ui(x, i)
58
+ fmpq_get_mpq(q.value, x)
59
+ fmpq_clear(x)
60
+ return q
61
+
62
+
63
+ def hilbert_class_polynomial(D):
64
+ """
65
+ Return the Hilbert class polynomial for discriminant ``D`` using ``arb``.
66
+
67
+ If ``D`` is not a quadratic discriminant, the result is the zero polynomial.
68
+
69
+ INPUT:
70
+
71
+ - ``D`` -- negative integer
72
+
73
+ OUTPUT: integer polynomial
74
+
75
+ EXAMPLES::
76
+
77
+ sage: from sage.libs.arb.arith import hilbert_class_polynomial
78
+ sage: hilbert_class_polynomial(-163)
79
+ x + 262537412640768000
80
+ sage: hilbert_class_polynomial(-162)
81
+ 0
82
+ """
83
+ cdef long n = D
84
+ cdef Polynomial_integer_dense_flint poly
85
+ poly = PolynomialRing(ZZ, "x", implementation="FLINT")()
86
+ acb_modular_hilbert_class_poly(poly._poly, n)
87
+ return poly
@@ -0,0 +1,6 @@
1
+ # sage_setup: distribution = sagemath-flint
2
+ # Deprecated header file; use sage/libs/flint/bernoulli.pxd instead
3
+ # See https://github.com/sagemath/sage/pull/36449
4
+
5
+ from sage.libs.flint.bernoulli cimport (
6
+ bernoulli_fmpq_ui)
sage/libs/arb/mag.pxd ADDED
@@ -0,0 +1,77 @@
1
+ # sage_setup: distribution = sagemath-flint
2
+ # Deprecated header file; use sage/libs/flint/mag.pxd instead
3
+ # See https://github.com/sagemath/sage/pull/36449
4
+
5
+ from sage.libs.flint.types cimport mag_t
6
+
7
+ from sage.libs.flint.mag cimport (
8
+ MAG_BITS,
9
+ mag_init,
10
+ mag_clear,
11
+ mag_init_set,
12
+ mag_swap,
13
+ mag_set,
14
+ mag_zero,
15
+ mag_one,
16
+ mag_inf,
17
+ mag_is_special,
18
+ mag_is_zero,
19
+ mag_is_inf,
20
+ mag_is_finite,
21
+ mag_equal,
22
+ mag_cmp,
23
+ mag_cmp_2exp_si,
24
+ mag_min,
25
+ mag_max,
26
+ mag_print,
27
+ mag_randtest,
28
+ mag_randtest_special,
29
+ mag_set_d,
30
+ mag_set_ui,
31
+ mag_set_fmpz,
32
+ mag_set_d_2exp_fmpz,
33
+ mag_set_fmpz_2exp_fmpz,
34
+ mag_set_ui_2exp_si,
35
+ mag_get_fmpq,
36
+ mag_set_ui_lower,
37
+ mag_set_fmpz_lower,
38
+ mag_set_fmpz_2exp_fmpz_lower,
39
+ mag_mul_2exp_si,
40
+ mag_mul_2exp_fmpz,
41
+ mag_mul,
42
+ mag_mul_ui,
43
+ mag_mul_fmpz,
44
+ mag_add,
45
+ mag_addmul,
46
+ mag_add_2exp_fmpz,
47
+ mag_div,
48
+ mag_div_ui,
49
+ mag_div_fmpz,
50
+ mag_mul_lower,
51
+ mag_mul_ui_lower,
52
+ mag_mul_fmpz_lower,
53
+ mag_add_lower,
54
+ mag_sub_lower,
55
+ mag_fast_init_set,
56
+ mag_fast_zero,
57
+ mag_fast_is_zero,
58
+ mag_fast_mul,
59
+ mag_fast_addmul,
60
+ mag_fast_add_2exp_si,
61
+ mag_fast_mul_2exp_si,
62
+ mag_pow_ui,
63
+ mag_pow_fmpz,
64
+ mag_pow_ui_lower,
65
+ mag_sqrt,
66
+ mag_rsqrt,
67
+ mag_hypot,
68
+ mag_log1p,
69
+ mag_log_ui,
70
+ mag_exp,
71
+ mag_expm1,
72
+ mag_exp_tail,
73
+ mag_binpow_uiui,
74
+ mag_fac_ui,
75
+ mag_rfac_ui,
76
+ mag_bernoulli_div_fac_ui,
77
+ mag_polylog_tail)
@@ -0,0 +1,37 @@
1
+ # sage_setup: distribution = sagemath-flint
2
+ # Deprecated header file; use sage/libs/flint/types.pxd instead
3
+ # See https://github.com/sagemath/sage/pull/36449
4
+
5
+ from sage.libs.flint.types cimport (
6
+ mag_struct,
7
+ mag_t,
8
+ mag_ptr,
9
+ mag_srcptr,
10
+ arf_struct,
11
+ arf_t,
12
+ arf_ptr,
13
+ arf_srcptr,
14
+ arf_rnd_t,
15
+ ARF_RND_DOWN,
16
+ ARF_RND_UP,
17
+ ARF_RND_FLOOR,
18
+ ARF_RND_CEIL,
19
+ ARF_RND_NEAR,
20
+ ARF_PREC_EXACT,
21
+ arb_struct,
22
+ arb_t,
23
+ arb_ptr,
24
+ arb_srcptr,
25
+ acb_struct,
26
+ acb_t,
27
+ acb_ptr,
28
+ acb_srcptr,
29
+ acb_mat_struct,
30
+ acb_mat_t,
31
+ acb_poly_struct,
32
+ acb_poly_t,
33
+ acb_calc_integrate_opt_struct,
34
+ acb_calc_integrate_opt_t,
35
+ acb_calc_func_t,
36
+ arb_poly_struct,
37
+ arb_poly_t)
@@ -0,0 +1 @@
1
+ # sage_setup: distribution = sagemath-flint
@@ -0,0 +1,270 @@
1
+ # sage_setup: distribution = sagemath-flint
2
+ # distutils: libraries = flint
3
+ # distutils: depends = flint/acb.h
4
+
5
+ ################################################################################
6
+ # This file is auto-generated by the script
7
+ # SAGE_ROOT/src/sage_setup/autogen/flint_autogen.py.
8
+ # From the commit 3e2c3a3e091106a25ca9c6fba28e02f2cbcd654a
9
+ # Do not modify by hand! Fix and rerun the script instead.
10
+ ################################################################################
11
+
12
+ from libc.stdio cimport FILE
13
+ from sage.libs.gmp.types cimport *
14
+ from sage.libs.mpfr.types cimport *
15
+ from sage.libs.flint.types cimport *
16
+
17
+ cdef extern from "flint_wrap.h":
18
+ void acb_init(acb_t x) noexcept
19
+ void acb_clear(acb_t x) noexcept
20
+ acb_ptr _acb_vec_init(slong n) noexcept
21
+ void _acb_vec_clear(acb_ptr v, slong n) noexcept
22
+ slong acb_allocated_bytes(const acb_t x) noexcept
23
+ slong _acb_vec_allocated_bytes(acb_srcptr vec, slong len) noexcept
24
+ double _acb_vec_estimate_allocated_bytes(slong len, slong prec) noexcept
25
+ void acb_zero(acb_t z) noexcept
26
+ void acb_one(acb_t z) noexcept
27
+ void acb_onei(acb_t z) noexcept
28
+ void acb_set(acb_t z, const acb_t x) noexcept
29
+ void acb_set_ui(acb_t z, ulong x) noexcept
30
+ void acb_set_si(acb_t z, slong x) noexcept
31
+ void acb_set_d(acb_t z, double x) noexcept
32
+ void acb_set_fmpz(acb_t z, const fmpz_t x) noexcept
33
+ void acb_set_arb(acb_t z, const arb_t c) noexcept
34
+ void acb_set_si_si(acb_t z, slong x, slong y) noexcept
35
+ void acb_set_d_d(acb_t z, double x, double y) noexcept
36
+ void acb_set_fmpz_fmpz(acb_t z, const fmpz_t x, const fmpz_t y) noexcept
37
+ void acb_set_arb_arb(acb_t z, const arb_t x, const arb_t y) noexcept
38
+ void acb_set_fmpq(acb_t z, const fmpq_t x, slong prec) noexcept
39
+ void acb_set_round(acb_t z, const acb_t x, slong prec) noexcept
40
+ void acb_set_round_fmpz(acb_t z, const fmpz_t x, slong prec) noexcept
41
+ void acb_set_round_arb(acb_t z, const arb_t x, slong prec) noexcept
42
+ void acb_swap(acb_t z, acb_t x) noexcept
43
+ void acb_add_error_arf(acb_t x, const arf_t err) noexcept
44
+ void acb_add_error_mag(acb_t x, const mag_t err) noexcept
45
+ void acb_add_error_arb(acb_t x, const arb_t err) noexcept
46
+ void acb_get_mid(acb_t m, const acb_t x) noexcept
47
+ void acb_print(const acb_t x) noexcept
48
+ void acb_fprint(FILE * file, const acb_t x) noexcept
49
+ void acb_printd(const acb_t x, slong digits) noexcept
50
+ void acb_fprintd(FILE * file, const acb_t x, slong digits) noexcept
51
+ void acb_printn(const acb_t x, slong digits, ulong flags) noexcept
52
+ void acb_fprintn(FILE * file, const acb_t x, slong digits, ulong flags) noexcept
53
+ void acb_randtest(acb_t z, flint_rand_t state, slong prec, slong mag_bits) noexcept
54
+ void acb_randtest_special(acb_t z, flint_rand_t state, slong prec, slong mag_bits) noexcept
55
+ void acb_randtest_precise(acb_t z, flint_rand_t state, slong prec, slong mag_bits) noexcept
56
+ void acb_randtest_param(acb_t z, flint_rand_t state, slong prec, slong mag_bits) noexcept
57
+ void acb_urandom(acb_t z, flint_rand_t state, slong prec) noexcept
58
+ bint acb_is_zero(const acb_t z) noexcept
59
+ bint acb_is_one(const acb_t z) noexcept
60
+ bint acb_is_finite(const acb_t z) noexcept
61
+ bint acb_is_exact(const acb_t z) noexcept
62
+ bint acb_is_int(const acb_t z) noexcept
63
+ bint acb_is_int_2exp_si(const acb_t x, slong e) noexcept
64
+ bint acb_equal(const acb_t x, const acb_t y) noexcept
65
+ bint acb_equal_si(const acb_t x, slong y) noexcept
66
+ bint acb_eq(const acb_t x, const acb_t y) noexcept
67
+ bint acb_ne(const acb_t x, const acb_t y) noexcept
68
+ bint acb_overlaps(const acb_t x, const acb_t y) noexcept
69
+ void acb_union(acb_t z, const acb_t x, const acb_t y, slong prec) noexcept
70
+ void acb_get_abs_ubound_arf(arf_t u, const acb_t z, slong prec) noexcept
71
+ void acb_get_abs_lbound_arf(arf_t u, const acb_t z, slong prec) noexcept
72
+ void acb_get_rad_ubound_arf(arf_t u, const acb_t z, slong prec) noexcept
73
+ void acb_get_mag(mag_t u, const acb_t x) noexcept
74
+ void acb_get_mag_lower(mag_t u, const acb_t x) noexcept
75
+ bint acb_contains_fmpq(const acb_t x, const fmpq_t y) noexcept
76
+ bint acb_contains_fmpz(const acb_t x, const fmpz_t y) noexcept
77
+ bint acb_contains(const acb_t x, const acb_t y) noexcept
78
+ bint acb_contains_zero(const acb_t x) noexcept
79
+ bint acb_contains_int(const acb_t x) noexcept
80
+ bint acb_contains_interior(const acb_t x, const acb_t y) noexcept
81
+ slong acb_rel_error_bits(const acb_t x) noexcept
82
+ slong acb_rel_accuracy_bits(const acb_t x) noexcept
83
+ slong acb_rel_one_accuracy_bits(const acb_t x) noexcept
84
+ slong acb_bits(const acb_t x) noexcept
85
+ void acb_indeterminate(acb_t x) noexcept
86
+ void acb_trim(acb_t y, const acb_t x) noexcept
87
+ bint acb_is_real(const acb_t x) noexcept
88
+ int acb_get_unique_fmpz(fmpz_t z, const acb_t x) noexcept
89
+ void acb_get_real(arb_t re, const acb_t z) noexcept
90
+ void acb_get_imag(arb_t im, const acb_t z) noexcept
91
+ void acb_arg(arb_t r, const acb_t z, slong prec) noexcept
92
+ void acb_abs(arb_t r, const acb_t z, slong prec) noexcept
93
+ void acb_sgn(acb_t r, const acb_t z, slong prec) noexcept
94
+ void acb_csgn(arb_t r, const acb_t z) noexcept
95
+ void acb_neg(acb_t z, const acb_t x) noexcept
96
+ void acb_neg_round(acb_t z, const acb_t x, slong prec) noexcept
97
+ void acb_conj(acb_t z, const acb_t x) noexcept
98
+ void acb_add_ui(acb_t z, const acb_t x, ulong y, slong prec) noexcept
99
+ void acb_add_si(acb_t z, const acb_t x, slong y, slong prec) noexcept
100
+ void acb_add_fmpz(acb_t z, const acb_t x, const fmpz_t y, slong prec) noexcept
101
+ void acb_add_arb(acb_t z, const acb_t x, const arb_t y, slong prec) noexcept
102
+ void acb_add(acb_t z, const acb_t x, const acb_t y, slong prec) noexcept
103
+ void acb_sub_ui(acb_t z, const acb_t x, ulong y, slong prec) noexcept
104
+ void acb_sub_si(acb_t z, const acb_t x, slong y, slong prec) noexcept
105
+ void acb_sub_fmpz(acb_t z, const acb_t x, const fmpz_t y, slong prec) noexcept
106
+ void acb_sub_arb(acb_t z, const acb_t x, const arb_t y, slong prec) noexcept
107
+ void acb_sub(acb_t z, const acb_t x, const acb_t y, slong prec) noexcept
108
+ void acb_mul_onei(acb_t z, const acb_t x) noexcept
109
+ void acb_div_onei(acb_t z, const acb_t x) noexcept
110
+ void acb_mul_i_pow_si(acb_t z, const acb_t x, slong k) noexcept
111
+ void acb_mul_ui(acb_t z, const acb_t x, ulong y, slong prec) noexcept
112
+ void acb_mul_si(acb_t z, const acb_t x, slong y, slong prec) noexcept
113
+ void acb_mul_fmpz(acb_t z, const acb_t x, const fmpz_t y, slong prec) noexcept
114
+ void acb_mul_arb(acb_t z, const acb_t x, const arb_t y, slong prec) noexcept
115
+ void acb_mul(acb_t z, const acb_t x, const acb_t y, slong prec) noexcept
116
+ void acb_mul_2exp_si(acb_t z, const acb_t x, slong e) noexcept
117
+ void acb_mul_2exp_fmpz(acb_t z, const acb_t x, const fmpz_t e) noexcept
118
+ void acb_sqr(acb_t z, const acb_t x, slong prec) noexcept
119
+ void acb_cube(acb_t z, const acb_t x, slong prec) noexcept
120
+ void acb_addmul(acb_t z, const acb_t x, const acb_t y, slong prec) noexcept
121
+ void acb_addmul_ui(acb_t z, const acb_t x, ulong y, slong prec) noexcept
122
+ void acb_addmul_si(acb_t z, const acb_t x, slong y, slong prec) noexcept
123
+ void acb_addmul_fmpz(acb_t z, const acb_t x, const fmpz_t y, slong prec) noexcept
124
+ void acb_addmul_arb(acb_t z, const acb_t x, const arb_t y, slong prec) noexcept
125
+ void acb_submul(acb_t z, const acb_t x, const acb_t y, slong prec) noexcept
126
+ void acb_submul_ui(acb_t z, const acb_t x, ulong y, slong prec) noexcept
127
+ void acb_submul_si(acb_t z, const acb_t x, slong y, slong prec) noexcept
128
+ void acb_submul_fmpz(acb_t z, const acb_t x, const fmpz_t y, slong prec) noexcept
129
+ void acb_submul_arb(acb_t z, const acb_t x, const arb_t y, slong prec) noexcept
130
+ void acb_inv(acb_t z, const acb_t x, slong prec) noexcept
131
+ void acb_div_ui(acb_t z, const acb_t x, ulong y, slong prec) noexcept
132
+ void acb_div_si(acb_t z, const acb_t x, slong y, slong prec) noexcept
133
+ void acb_div_fmpz(acb_t z, const acb_t x, const fmpz_t y, slong prec) noexcept
134
+ void acb_div_arb(acb_t z, const acb_t x, const arb_t y, slong prec) noexcept
135
+ void acb_div(acb_t z, const acb_t x, const acb_t y, slong prec) noexcept
136
+ void acb_dot_precise(acb_t res, const acb_t s, int subtract, acb_srcptr x, slong xstep, acb_srcptr y, slong ystep, slong len, slong prec) noexcept
137
+ void acb_dot_simple(acb_t res, const acb_t s, int subtract, acb_srcptr x, slong xstep, acb_srcptr y, slong ystep, slong len, slong prec) noexcept
138
+ void acb_dot(acb_t res, const acb_t s, int subtract, acb_srcptr x, slong xstep, acb_srcptr y, slong ystep, slong len, slong prec) noexcept
139
+ void acb_approx_dot(acb_t res, const acb_t s, int subtract, acb_srcptr x, slong xstep, acb_srcptr y, slong ystep, slong len, slong prec) noexcept
140
+ void acb_dot_ui(acb_t res, const acb_t initial, int subtract, acb_srcptr x, slong xstep, const ulong * y, slong ystep, slong len, slong prec) noexcept
141
+ void acb_dot_si(acb_t res, const acb_t initial, int subtract, acb_srcptr x, slong xstep, const slong * y, slong ystep, slong len, slong prec) noexcept
142
+ void acb_dot_uiui(acb_t res, const acb_t initial, int subtract, acb_srcptr x, slong xstep, const ulong * y, slong ystep, slong len, slong prec) noexcept
143
+ void acb_dot_siui(acb_t res, const acb_t initial, int subtract, acb_srcptr x, slong xstep, const ulong * y, slong ystep, slong len, slong prec) noexcept
144
+ void acb_dot_fmpz(acb_t res, const acb_t initial, int subtract, acb_srcptr x, slong xstep, const fmpz * y, slong ystep, slong len, slong prec) noexcept
145
+ void acb_const_pi(acb_t y, slong prec) noexcept
146
+ void acb_sqrt(acb_t r, const acb_t z, slong prec) noexcept
147
+ void acb_sqrt_analytic(acb_t r, const acb_t z, int analytic, slong prec) noexcept
148
+ void acb_rsqrt(acb_t r, const acb_t z, slong prec) noexcept
149
+ void acb_rsqrt_analytic(acb_t r, const acb_t z, int analytic, slong prec) noexcept
150
+ void acb_sqrts(acb_t y1, acb_t y2, const acb_t x, slong prec) noexcept
151
+ void acb_quadratic_roots_fmpz(acb_t r1, acb_t r2, const fmpz_t a, const fmpz_t b, const fmpz_t c, slong prec) noexcept
152
+ void acb_root_ui(acb_t r, const acb_t z, ulong k, slong prec) noexcept
153
+ void acb_pow_fmpz(acb_t y, const acb_t b, const fmpz_t e, slong prec) noexcept
154
+ void acb_pow_ui(acb_t y, const acb_t b, ulong e, slong prec) noexcept
155
+ void acb_pow_si(acb_t y, const acb_t b, slong e, slong prec) noexcept
156
+ void acb_pow_arb(acb_t z, const acb_t x, const arb_t y, slong prec) noexcept
157
+ void acb_pow(acb_t z, const acb_t x, const acb_t y, slong prec) noexcept
158
+ void acb_pow_analytic(acb_t r, const acb_t x, const acb_t y, int analytic, slong prec) noexcept
159
+ void acb_unit_root(acb_t res, ulong order, slong prec) noexcept
160
+ void acb_exp(acb_t y, const acb_t z, slong prec) noexcept
161
+ void acb_exp_pi_i(acb_t y, const acb_t z, slong prec) noexcept
162
+ void acb_exp_invexp(acb_t s, acb_t t, const acb_t z, slong prec) noexcept
163
+ void acb_expm1(acb_t res, const acb_t z, slong prec) noexcept
164
+ void acb_log(acb_t y, const acb_t z, slong prec) noexcept
165
+ void acb_log_analytic(acb_t r, const acb_t z, int analytic, slong prec) noexcept
166
+ void acb_log1p(acb_t z, const acb_t x, slong prec) noexcept
167
+ void acb_sin(acb_t s, const acb_t z, slong prec) noexcept
168
+ void acb_cos(acb_t c, const acb_t z, slong prec) noexcept
169
+ void acb_sin_cos(acb_t s, acb_t c, const acb_t z, slong prec) noexcept
170
+ void acb_tan(acb_t s, const acb_t z, slong prec) noexcept
171
+ void acb_cot(acb_t s, const acb_t z, slong prec) noexcept
172
+ void acb_sin_pi(acb_t s, const acb_t z, slong prec) noexcept
173
+ void acb_cos_pi(acb_t s, const acb_t z, slong prec) noexcept
174
+ void acb_sin_cos_pi(acb_t s, acb_t c, const acb_t z, slong prec) noexcept
175
+ void acb_tan_pi(acb_t s, const acb_t z, slong prec) noexcept
176
+ void acb_cot_pi(acb_t s, const acb_t z, slong prec) noexcept
177
+ void acb_sec(acb_t res, const acb_t z, slong prec) noexcept
178
+ void acb_csc(acb_t res, const acb_t z, slong prec) noexcept
179
+ void acb_csc_pi(acb_t res, const acb_t z, slong prec) noexcept
180
+ void acb_sinc(acb_t s, const acb_t z, slong prec) noexcept
181
+ void acb_sinc_pi(acb_t s, const acb_t z, slong prec) noexcept
182
+ void acb_asin(acb_t res, const acb_t z, slong prec) noexcept
183
+ void acb_acos(acb_t res, const acb_t z, slong prec) noexcept
184
+ void acb_atan(acb_t res, const acb_t z, slong prec) noexcept
185
+ void acb_sinh(acb_t s, const acb_t z, slong prec) noexcept
186
+ void acb_cosh(acb_t c, const acb_t z, slong prec) noexcept
187
+ void acb_sinh_cosh(acb_t s, acb_t c, const acb_t z, slong prec) noexcept
188
+ void acb_tanh(acb_t s, const acb_t z, slong prec) noexcept
189
+ void acb_coth(acb_t s, const acb_t z, slong prec) noexcept
190
+ void acb_sech(acb_t res, const acb_t z, slong prec) noexcept
191
+ void acb_csch(acb_t res, const acb_t z, slong prec) noexcept
192
+ void acb_asinh(acb_t res, const acb_t z, slong prec) noexcept
193
+ void acb_acosh(acb_t res, const acb_t z, slong prec) noexcept
194
+ void acb_atanh(acb_t res, const acb_t z, slong prec) noexcept
195
+ void acb_lambertw_asymp(acb_t res, const acb_t z, const fmpz_t k, slong L, slong M, slong prec) noexcept
196
+ int acb_lambertw_check_branch(const acb_t w, const fmpz_t k, slong prec) noexcept
197
+ void acb_lambertw_bound_deriv(mag_t res, const acb_t z, const acb_t ez1, const fmpz_t k) noexcept
198
+ void acb_lambertw(acb_t res, const acb_t z, const fmpz_t k, int flags, slong prec) noexcept
199
+ void acb_rising_ui(acb_t z, const acb_t x, ulong n, slong prec) noexcept
200
+ void acb_rising(acb_t z, const acb_t x, const acb_t n, slong prec) noexcept
201
+ void acb_gamma(acb_t y, const acb_t x, slong prec) noexcept
202
+ void acb_rgamma(acb_t y, const acb_t x, slong prec) noexcept
203
+ void acb_lgamma(acb_t y, const acb_t x, slong prec) noexcept
204
+ void acb_digamma(acb_t y, const acb_t x, slong prec) noexcept
205
+ void acb_log_sin_pi(acb_t res, const acb_t z, slong prec) noexcept
206
+ void acb_polygamma(acb_t res, const acb_t s, const acb_t z, slong prec) noexcept
207
+ void acb_barnes_g(acb_t res, const acb_t z, slong prec) noexcept
208
+ void acb_log_barnes_g(acb_t res, const acb_t z, slong prec) noexcept
209
+ void acb_zeta(acb_t z, const acb_t s, slong prec) noexcept
210
+ void acb_hurwitz_zeta(acb_t z, const acb_t s, const acb_t a, slong prec) noexcept
211
+ void acb_bernoulli_poly_ui(acb_t res, ulong n, const acb_t x, slong prec) noexcept
212
+ void acb_polylog(acb_t w, const acb_t s, const acb_t z, slong prec) noexcept
213
+ void acb_polylog_si(acb_t w, slong s, const acb_t z, slong prec) noexcept
214
+ void acb_agm1(acb_t m, const acb_t z, slong prec) noexcept
215
+ void acb_agm1_cpx(acb_ptr m, const acb_t z, slong len, slong prec) noexcept
216
+ void acb_agm(acb_t m, const acb_t x, const acb_t y, slong prec) noexcept
217
+ void acb_chebyshev_t_ui(acb_t a, ulong n, const acb_t x, slong prec) noexcept
218
+ void acb_chebyshev_u_ui(acb_t a, ulong n, const acb_t x, slong prec) noexcept
219
+ void acb_chebyshev_t2_ui(acb_t a, acb_t b, ulong n, const acb_t x, slong prec) noexcept
220
+ void acb_chebyshev_u2_ui(acb_t a, acb_t b, ulong n, const acb_t x, slong prec) noexcept
221
+ void acb_real_abs(acb_t res, const acb_t z, int analytic, slong prec) noexcept
222
+ void acb_real_sgn(acb_t res, const acb_t z, int analytic, slong prec) noexcept
223
+ void acb_real_heaviside(acb_t res, const acb_t z, int analytic, slong prec) noexcept
224
+ void acb_real_floor(acb_t res, const acb_t z, int analytic, slong prec) noexcept
225
+ void acb_real_ceil(acb_t res, const acb_t z, int analytic, slong prec) noexcept
226
+ void acb_real_max(acb_t res, const acb_t x, const acb_t y, int analytic, slong prec) noexcept
227
+ void acb_real_min(acb_t res, const acb_t x, const acb_t y, int analytic, slong prec) noexcept
228
+ void acb_real_sqrtpos(acb_t res, const acb_t z, int analytic, slong prec) noexcept
229
+ void _acb_vec_zero(acb_ptr A, slong n) noexcept
230
+ bint _acb_vec_is_zero(acb_srcptr vec, slong len) noexcept
231
+ bint _acb_vec_is_real(acb_srcptr v, slong len) noexcept
232
+ bint _acb_vec_is_finite(acb_srcptr vec, slong len) noexcept
233
+ bint _acb_vec_equal(acb_srcptr vec1, acb_srcptr vec2, slong len) noexcept
234
+ bint _acb_vec_overlaps(acb_srcptr vec1, acb_srcptr vec2, slong len) noexcept
235
+ bint _acb_vec_contains(acb_srcptr vec1, acb_srcptr vec2, slong len) noexcept
236
+ void _acb_vec_set(acb_ptr res, acb_srcptr vec, slong len) noexcept
237
+ void _acb_vec_set_round(acb_ptr res, acb_srcptr vec, slong len, slong prec) noexcept
238
+ void _acb_vec_swap(acb_ptr vec1, acb_ptr vec2, slong len) noexcept
239
+ void _acb_vec_get_real(arb_ptr re, acb_srcptr vec, slong len) noexcept
240
+ void _acb_vec_get_imag(arb_ptr im, acb_srcptr vec, slong len) noexcept
241
+ void _acb_vec_set_real_imag(acb_ptr vec, arb_srcptr re, arb_srcptr im, slong len) noexcept
242
+ void _acb_vec_neg(acb_ptr res, acb_srcptr vec, slong len) noexcept
243
+ void _acb_vec_add(acb_ptr res, acb_srcptr vec1, acb_srcptr vec2, slong len, slong prec) noexcept
244
+ void _acb_vec_sub(acb_ptr res, acb_srcptr vec1, acb_srcptr vec2, slong len, slong prec) noexcept
245
+ void _acb_vec_scalar_submul(acb_ptr res, acb_srcptr vec, slong len, const acb_t c, slong prec) noexcept
246
+ void _acb_vec_scalar_addmul(acb_ptr res, acb_srcptr vec, slong len, const acb_t c, slong prec) noexcept
247
+ void _acb_vec_scalar_mul(acb_ptr res, acb_srcptr vec, slong len, const acb_t c, slong prec) noexcept
248
+ void _acb_vec_scalar_mul_ui(acb_ptr res, acb_srcptr vec, slong len, ulong c, slong prec) noexcept
249
+ void _acb_vec_scalar_mul_2exp_si(acb_ptr res, acb_srcptr vec, slong len, slong c) noexcept
250
+ void _acb_vec_scalar_mul_onei(acb_ptr res, acb_srcptr vec, slong len) noexcept
251
+ void _acb_vec_scalar_div_ui(acb_ptr res, acb_srcptr vec, slong len, ulong c, slong prec) noexcept
252
+ void _acb_vec_scalar_div(acb_ptr res, acb_srcptr vec, slong len, const acb_t c, slong prec) noexcept
253
+ void _acb_vec_scalar_mul_arb(acb_ptr res, acb_srcptr vec, slong len, const arb_t c, slong prec) noexcept
254
+ void _acb_vec_scalar_div_arb(acb_ptr res, acb_srcptr vec, slong len, const arb_t c, slong prec) noexcept
255
+ void _acb_vec_scalar_mul_fmpz(acb_ptr res, acb_srcptr vec, slong len, const fmpz_t c, slong prec) noexcept
256
+ void _acb_vec_scalar_div_fmpz(acb_ptr res, acb_srcptr vec, slong len, const fmpz_t c, slong prec) noexcept
257
+ void _acb_vec_sqr(acb_ptr res, acb_srcptr vec, slong len, slong prec) noexcept
258
+ slong _acb_vec_bits(acb_srcptr vec, slong len) noexcept
259
+ void _acb_vec_set_powers(acb_ptr xs, const acb_t x, slong len, slong prec) noexcept
260
+ void _acb_vec_unit_roots(acb_ptr z, slong order, slong len, slong prec) noexcept
261
+ void _acb_vec_add_error_arf_vec(acb_ptr res, arf_srcptr err, slong len) noexcept
262
+ void _acb_vec_add_error_mag_vec(acb_ptr res, mag_srcptr err, slong len) noexcept
263
+ void _acb_vec_indeterminate(acb_ptr vec, slong len) noexcept
264
+ void _acb_vec_trim(acb_ptr res, acb_srcptr vec, slong len) noexcept
265
+ int _acb_vec_get_unique_fmpz_vec(fmpz * res, acb_srcptr vec, slong len) noexcept
266
+ void _acb_vec_sort_pretty(acb_ptr vec, slong len) noexcept
267
+ void _acb_vec_printd(acb_srcptr vec, slong len, slong digits) noexcept
268
+ void _acb_vec_printn(acb_srcptr vec, slong len, slong digits, ulong flags) noexcept
269
+
270
+ from .acb_macros cimport *
@@ -0,0 +1,22 @@
1
+ # sage_setup: distribution = sagemath-flint
2
+ # distutils: libraries = flint
3
+ # distutils: depends = flint/acb_calc.h
4
+
5
+ ################################################################################
6
+ # This file is auto-generated by the script
7
+ # SAGE_ROOT/src/sage_setup/autogen/flint_autogen.py.
8
+ # From the commit 3e2c3a3e091106a25ca9c6fba28e02f2cbcd654a
9
+ # Do not modify by hand! Fix and rerun the script instead.
10
+ ################################################################################
11
+
12
+ from libc.stdio cimport FILE
13
+ from sage.libs.gmp.types cimport *
14
+ from sage.libs.mpfr.types cimport *
15
+ from sage.libs.flint.types cimport *
16
+
17
+ cdef extern from "flint_wrap.h":
18
+ int acb_calc_integrate(acb_t res, acb_calc_func_t func, void * param, const acb_t a, const acb_t b, slong rel_goal, const mag_t abs_tol, const acb_calc_integrate_opt_t options, slong prec) noexcept
19
+ void acb_calc_integrate_opt_init(acb_calc_integrate_opt_t options) noexcept
20
+ int acb_calc_integrate_gl_auto_deg(acb_t res, slong * num_eval, acb_calc_func_t func, void * param, const acb_t a, const acb_t b, const mag_t tol, slong deg_limit, int flags, slong prec) noexcept
21
+ void acb_calc_cauchy_bound(arb_t bound, acb_calc_func_t func, void * param, const acb_t x, const arb_t radius, slong maxdepth, slong prec) noexcept
22
+ int acb_calc_integrate_taylor(acb_t res, acb_calc_func_t func, void * param, const acb_t a, const acb_t b, const arf_t inner_radius, const arf_t outer_radius, slong accuracy_goal, slong prec) noexcept