passagemath-flint 10.6.1rc10__cp311-cp311-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-311-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-311-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-311-x86_64-linux-gnu.so +0 -0
  26. sage/graphs/chrompoly.pyx +555 -0
  27. sage/graphs/matchpoly.cpython-311-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-311-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-311-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-311-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-311-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-311-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-311-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-311-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-311-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-311-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-311-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-311-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-311-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-311-x86_64-linux-gnu.so +0 -0
  221. sage/matrix/change_ring.pyx +43 -0
  222. sage/matrix/matrix_complex_ball_dense.cpython-311-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-311-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-311-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-311-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-311-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-311-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-311-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-311-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-311-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-311-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-311-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-311-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-311-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-311-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-311-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-311-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-311-x86_64-linux-gnu.so +0 -0
  286. sage/rings/factorint_flint.pyx +99 -0
  287. sage/rings/fraction_field_FpT.cpython-311-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-311-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-311-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-311-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-311-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-311-x86_64-linux-gnu.so +0 -0
  325. sage/rings/polynomial/hilbert.pyx +602 -0
  326. sage/rings/polynomial/polynomial_complex_arb.cpython-311-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-311-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-311-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-311-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-311-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-311-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-311-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-311-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-311-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-311-x86_64-linux-gnu.so +0 -0
  354. sage/rings/real_interval_absolute.pyx +1073 -0
  355. sage/rings/real_mpfi.cpython-311-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-311-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
@@ -0,0 +1,382 @@
1
+ # sage_setup: distribution = sagemath-flint
2
+ # distutils: libraries = flint
3
+ # distutils: depends = flint/arb.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 arb_init(arb_t x) noexcept
19
+ void arb_clear(arb_t x) noexcept
20
+ arb_ptr _arb_vec_init(slong n) noexcept
21
+ void _arb_vec_clear(arb_ptr v, slong n) noexcept
22
+ void arb_swap(arb_t x, arb_t y) noexcept
23
+ slong arb_allocated_bytes(const arb_t x) noexcept
24
+ slong _arb_vec_allocated_bytes(arb_srcptr vec, slong len) noexcept
25
+ double _arb_vec_estimate_allocated_bytes(slong len, slong prec) noexcept
26
+ void arb_set(arb_t y, const arb_t x) noexcept
27
+ void arb_set_arf(arb_t y, const arf_t x) noexcept
28
+ void arb_set_si(arb_t y, slong x) noexcept
29
+ void arb_set_ui(arb_t y, ulong x) noexcept
30
+ void arb_set_d(arb_t y, double x) noexcept
31
+ void arb_set_fmpz(arb_t y, const fmpz_t x) noexcept
32
+ void arb_set_fmpz_2exp(arb_t y, const fmpz_t x, const fmpz_t e) noexcept
33
+ void arb_set_round(arb_t y, const arb_t x, slong prec) noexcept
34
+ void arb_set_round_fmpz(arb_t y, const fmpz_t x, slong prec) noexcept
35
+ void arb_set_round_fmpz_2exp(arb_t y, const fmpz_t x, const fmpz_t e, slong prec) noexcept
36
+ void arb_set_fmpq(arb_t y, const fmpq_t x, slong prec) noexcept
37
+ int arb_set_str(arb_t res, const char * inp, slong prec) noexcept
38
+ char * arb_get_str(const arb_t x, slong n, ulong flags) noexcept
39
+ void arb_zero(arb_t x) noexcept
40
+ void arb_one(arb_t f) noexcept
41
+ void arb_pos_inf(arb_t x) noexcept
42
+ void arb_neg_inf(arb_t x) noexcept
43
+ void arb_zero_pm_inf(arb_t x) noexcept
44
+ void arb_indeterminate(arb_t x) noexcept
45
+ void arb_zero_pm_one(arb_t x) noexcept
46
+ void arb_unit_interval(arb_t x) noexcept
47
+ void arb_print(const arb_t x) noexcept
48
+ void arb_fprint(FILE * file, const arb_t x) noexcept
49
+ void arb_printd(const arb_t x, slong digits) noexcept
50
+ void arb_fprintd(FILE * file, const arb_t x, slong digits) noexcept
51
+ void arb_printn(const arb_t x, slong digits, ulong flags) noexcept
52
+ void arb_fprintn(FILE * file, const arb_t x, slong digits, ulong flags) noexcept
53
+ char * arb_dump_str(const arb_t x) noexcept
54
+ int arb_load_str(arb_t x, const char * str) noexcept
55
+ int arb_dump_file(FILE * stream, const arb_t x) noexcept
56
+ int arb_load_file(arb_t x, FILE * stream) noexcept
57
+ void arb_randtest(arb_t x, flint_rand_t state, slong prec, slong mag_bits) noexcept
58
+ void arb_randtest_exact(arb_t x, flint_rand_t state, slong prec, slong mag_bits) noexcept
59
+ void arb_randtest_precise(arb_t x, flint_rand_t state, slong prec, slong mag_bits) noexcept
60
+ void arb_randtest_positive(arb_t x, flint_rand_t state, slong prec, slong mag_bits) noexcept
61
+ void arb_randtest_wide(arb_t x, flint_rand_t state, slong prec, slong mag_bits) noexcept
62
+ void arb_randtest_special(arb_t x, flint_rand_t state, slong prec, slong mag_bits) noexcept
63
+ void arb_get_rand_fmpq(fmpq_t q, flint_rand_t state, const arb_t x, slong bits) noexcept
64
+ void arb_urandom(arb_t x, flint_rand_t state, slong prec) noexcept
65
+ void arb_get_mid_arb(arb_t m, const arb_t x) noexcept
66
+ void arb_get_rad_arb(arb_t r, const arb_t x) noexcept
67
+ void arb_add_error_arf(arb_t x, const arf_t err) noexcept
68
+ void arb_add_error_mag(arb_t x, const mag_t err) noexcept
69
+ void arb_add_error(arb_t x, const arb_t err) noexcept
70
+ void arb_add_error_2exp_si(arb_t x, slong e) noexcept
71
+ void arb_add_error_2exp_fmpz(arb_t x, const fmpz_t e) noexcept
72
+ void arb_union(arb_t z, const arb_t x, const arb_t y, slong prec) noexcept
73
+ int arb_intersection(arb_t z, const arb_t x, const arb_t y, slong prec) noexcept
74
+ void arb_nonnegative_part(arb_t res, const arb_t x) noexcept
75
+ void arb_get_abs_ubound_arf(arf_t u, const arb_t x, slong prec) noexcept
76
+ void arb_get_abs_lbound_arf(arf_t u, const arb_t x, slong prec) noexcept
77
+ void arb_get_ubound_arf(arf_t u, const arb_t x, slong prec) noexcept
78
+ void arb_get_lbound_arf(arf_t u, const arb_t x, slong prec) noexcept
79
+ void arb_get_mag(mag_t z, const arb_t x) noexcept
80
+ void arb_get_mag_lower(mag_t z, const arb_t x) noexcept
81
+ void arb_get_mag_lower_nonnegative(mag_t z, const arb_t x) noexcept
82
+ void arb_get_interval_fmpz_2exp(fmpz_t a, fmpz_t b, fmpz_t exp, const arb_t x) noexcept
83
+ void arb_set_interval_mag(arb_t x, const mag_t a, const mag_t b, slong prec) noexcept
84
+ void arb_set_interval_arf(arb_t x, const arf_t a, const arf_t b, slong prec) noexcept
85
+ void arb_set_interval_mpfr(arb_t x, const mpfr_t a, const mpfr_t b, slong prec) noexcept
86
+ void arb_set_interval_neg_pos_mag(arb_t x, const mag_t a, const mag_t b, slong prec) noexcept
87
+ void arb_get_interval_arf(arf_t a, arf_t b, const arb_t x, slong prec) noexcept
88
+ void arb_get_interval_mpfr(mpfr_t a, mpfr_t b, const arb_t x) noexcept
89
+ slong arb_rel_error_bits(const arb_t x) noexcept
90
+ slong arb_rel_accuracy_bits(const arb_t x) noexcept
91
+ slong arb_rel_one_accuracy_bits(const arb_t x) noexcept
92
+ slong arb_bits(const arb_t x) noexcept
93
+ void arb_trim(arb_t y, const arb_t x) noexcept
94
+ int arb_get_unique_fmpz(fmpz_t z, const arb_t x) noexcept
95
+ void arb_floor(arb_t y, const arb_t x, slong prec) noexcept
96
+ void arb_ceil(arb_t y, const arb_t x, slong prec) noexcept
97
+ void arb_trunc(arb_t y, const arb_t x, slong prec) noexcept
98
+ void arb_nint(arb_t y, const arb_t x, slong prec) noexcept
99
+ void arb_get_fmpz_mid_rad_10exp(fmpz_t mid, fmpz_t rad, fmpz_t exp, const arb_t x, slong n) noexcept
100
+ int arb_can_round_arf(const arb_t x, slong prec, arf_rnd_t rnd) noexcept
101
+ int arb_can_round_mpfr(const arb_t x, slong prec, mpfr_rnd_t rnd) noexcept
102
+ bint arb_is_zero(const arb_t x) noexcept
103
+ bint arb_is_nonzero(const arb_t x) noexcept
104
+ bint arb_is_one(const arb_t f) noexcept
105
+ bint arb_is_finite(const arb_t x) noexcept
106
+ bint arb_is_exact(const arb_t x) noexcept
107
+ bint arb_is_int(const arb_t x) noexcept
108
+ bint arb_is_int_2exp_si(const arb_t x, slong e) noexcept
109
+ bint arb_equal(const arb_t x, const arb_t y) noexcept
110
+ bint arb_equal_si(const arb_t x, slong y) noexcept
111
+ bint arb_is_positive(const arb_t x) noexcept
112
+ bint arb_is_nonnegative(const arb_t x) noexcept
113
+ bint arb_is_negative(const arb_t x) noexcept
114
+ bint arb_is_nonpositive(const arb_t x) noexcept
115
+ bint arb_overlaps(const arb_t x, const arb_t y) noexcept
116
+ bint arb_contains_arf(const arb_t x, const arf_t y) noexcept
117
+ bint arb_contains_fmpq(const arb_t x, const fmpq_t y) noexcept
118
+ bint arb_contains_fmpz(const arb_t x, const fmpz_t y) noexcept
119
+ bint arb_contains_si(const arb_t x, slong y) noexcept
120
+ bint arb_contains_mpfr(const arb_t x, const mpfr_t y) noexcept
121
+ bint arb_contains(const arb_t x, const arb_t y) noexcept
122
+ bint arb_contains_int(const arb_t x) noexcept
123
+ bint arb_contains_zero(const arb_t x) noexcept
124
+ bint arb_contains_negative(const arb_t x) noexcept
125
+ bint arb_contains_nonpositive(const arb_t x) noexcept
126
+ bint arb_contains_positive(const arb_t x) noexcept
127
+ bint arb_contains_nonnegative(const arb_t x) noexcept
128
+ bint arb_contains_interior(const arb_t x, const arb_t y) noexcept
129
+ bint arb_eq(const arb_t x, const arb_t y) noexcept
130
+ bint arb_ne(const arb_t x, const arb_t y) noexcept
131
+ bint arb_lt(const arb_t x, const arb_t y) noexcept
132
+ bint arb_le(const arb_t x, const arb_t y) noexcept
133
+ bint arb_gt(const arb_t x, const arb_t y) noexcept
134
+ bint arb_ge(const arb_t x, const arb_t y) noexcept
135
+ void arb_neg(arb_t y, const arb_t x) noexcept
136
+ void arb_neg_round(arb_t y, const arb_t x, slong prec) noexcept
137
+ void arb_abs(arb_t y, const arb_t x) noexcept
138
+ void arb_nonnegative_abs(arb_t y, const arb_t x) noexcept
139
+ void arb_sgn(arb_t y, const arb_t x) noexcept
140
+ int arb_sgn_nonzero(const arb_t x) noexcept
141
+ void arb_min(arb_t z, const arb_t x, const arb_t y, slong prec) noexcept
142
+ void arb_max(arb_t z, const arb_t x, const arb_t y, slong prec) noexcept
143
+ void arb_minmax(arb_t z1, arb_t z2, const arb_t x, const arb_t y, slong prec) noexcept
144
+ void arb_add(arb_t z, const arb_t x, const arb_t y, slong prec) noexcept
145
+ void arb_add_arf(arb_t z, const arb_t x, const arf_t y, slong prec) noexcept
146
+ void arb_add_ui(arb_t z, const arb_t x, ulong y, slong prec) noexcept
147
+ void arb_add_si(arb_t z, const arb_t x, slong y, slong prec) noexcept
148
+ void arb_add_fmpz(arb_t z, const arb_t x, const fmpz_t y, slong prec) noexcept
149
+ void arb_add_fmpz_2exp(arb_t z, const arb_t x, const fmpz_t m, const fmpz_t e, slong prec) noexcept
150
+ void arb_sub(arb_t z, const arb_t x, const arb_t y, slong prec) noexcept
151
+ void arb_sub_arf(arb_t z, const arb_t x, const arf_t y, slong prec) noexcept
152
+ void arb_sub_ui(arb_t z, const arb_t x, ulong y, slong prec) noexcept
153
+ void arb_sub_si(arb_t z, const arb_t x, slong y, slong prec) noexcept
154
+ void arb_sub_fmpz(arb_t z, const arb_t x, const fmpz_t y, slong prec) noexcept
155
+ void arb_mul(arb_t z, const arb_t x, const arb_t y, slong prec) noexcept
156
+ void arb_mul_arf(arb_t z, const arb_t x, const arf_t y, slong prec) noexcept
157
+ void arb_mul_si(arb_t z, const arb_t x, slong y, slong prec) noexcept
158
+ void arb_mul_ui(arb_t z, const arb_t x, ulong y, slong prec) noexcept
159
+ void arb_mul_fmpz(arb_t z, const arb_t x, const fmpz_t y, slong prec) noexcept
160
+ void arb_mul_2exp_si(arb_t y, const arb_t x, slong e) noexcept
161
+ void arb_mul_2exp_fmpz(arb_t y, const arb_t x, const fmpz_t e) noexcept
162
+ void arb_addmul(arb_t z, const arb_t x, const arb_t y, slong prec) noexcept
163
+ void arb_addmul_arf(arb_t z, const arb_t x, const arf_t y, slong prec) noexcept
164
+ void arb_addmul_si(arb_t z, const arb_t x, slong y, slong prec) noexcept
165
+ void arb_addmul_ui(arb_t z, const arb_t x, ulong y, slong prec) noexcept
166
+ void arb_addmul_fmpz(arb_t z, const arb_t x, const fmpz_t y, slong prec) noexcept
167
+ void arb_submul(arb_t z, const arb_t x, const arb_t y, slong prec) noexcept
168
+ void arb_submul_arf(arb_t z, const arb_t x, const arf_t y, slong prec) noexcept
169
+ void arb_submul_si(arb_t z, const arb_t x, slong y, slong prec) noexcept
170
+ void arb_submul_ui(arb_t z, const arb_t x, ulong y, slong prec) noexcept
171
+ void arb_submul_fmpz(arb_t z, const arb_t x, const fmpz_t y, slong prec) noexcept
172
+ void arb_fma(arb_t res, const arb_t x, const arb_t y, const arb_t z, slong prec) noexcept
173
+ void arb_fma_arf(arb_t res, const arb_t x, const arf_t y, const arb_t z, slong prec) noexcept
174
+ void arb_fma_si(arb_t res, const arb_t x, slong y, const arb_t z, slong prec) noexcept
175
+ void arb_fma_ui(arb_t res, const arb_t x, ulong y, const arb_t z, slong prec) noexcept
176
+ void arb_fma_fmpz(arb_t res, const arb_t x, const fmpz_t y, const arb_t z, slong prec) noexcept
177
+ void arb_inv(arb_t z, const arb_t x, slong prec) noexcept
178
+ void arb_div(arb_t z, const arb_t x, const arb_t y, slong prec) noexcept
179
+ void arb_div_arf(arb_t z, const arb_t x, const arf_t y, slong prec) noexcept
180
+ void arb_div_si(arb_t z, const arb_t x, slong y, slong prec) noexcept
181
+ void arb_div_ui(arb_t z, const arb_t x, ulong y, slong prec) noexcept
182
+ void arb_div_fmpz(arb_t z, const arb_t x, const fmpz_t y, slong prec) noexcept
183
+ void arb_fmpz_div_fmpz(arb_t z, const fmpz_t x, const fmpz_t y, slong prec) noexcept
184
+ void arb_ui_div(arb_t z, ulong x, const arb_t y, slong prec) noexcept
185
+ void arb_div_2expm1_ui(arb_t z, const arb_t x, ulong n, slong prec) noexcept
186
+ void arb_dot_precise(arb_t res, const arb_t s, int subtract, arb_srcptr x, slong xstep, arb_srcptr y, slong ystep, slong len, slong prec) noexcept
187
+ void arb_dot_simple(arb_t res, const arb_t s, int subtract, arb_srcptr x, slong xstep, arb_srcptr y, slong ystep, slong len, slong prec) noexcept
188
+ void arb_dot(arb_t res, const arb_t s, int subtract, arb_srcptr x, slong xstep, arb_srcptr y, slong ystep, slong len, slong prec) noexcept
189
+ void arb_approx_dot(arb_t res, const arb_t s, int subtract, arb_srcptr x, slong xstep, arb_srcptr y, slong ystep, slong len, slong prec) noexcept
190
+ void arb_dot_ui(arb_t res, const arb_t initial, int subtract, arb_srcptr x, slong xstep, const ulong * y, slong ystep, slong len, slong prec) noexcept
191
+ void arb_dot_si(arb_t res, const arb_t initial, int subtract, arb_srcptr x, slong xstep, const slong * y, slong ystep, slong len, slong prec) noexcept
192
+ void arb_dot_uiui(arb_t res, const arb_t initial, int subtract, arb_srcptr x, slong xstep, const ulong * y, slong ystep, slong len, slong prec) noexcept
193
+ void arb_dot_siui(arb_t res, const arb_t initial, int subtract, arb_srcptr x, slong xstep, const ulong * y, slong ystep, slong len, slong prec) noexcept
194
+ void arb_dot_fmpz(arb_t res, const arb_t initial, int subtract, arb_srcptr x, slong xstep, const fmpz * y, slong ystep, slong len, slong prec) noexcept
195
+ void arb_sqrt(arb_t z, const arb_t x, slong prec) noexcept
196
+ void arb_sqrt_arf(arb_t z, const arf_t x, slong prec) noexcept
197
+ void arb_sqrt_fmpz(arb_t z, const fmpz_t x, slong prec) noexcept
198
+ void arb_sqrt_ui(arb_t z, ulong x, slong prec) noexcept
199
+ void arb_sqrtpos(arb_t z, const arb_t x, slong prec) noexcept
200
+ void arb_hypot(arb_t z, const arb_t x, const arb_t y, slong prec) noexcept
201
+ void arb_rsqrt(arb_t z, const arb_t x, slong prec) noexcept
202
+ void arb_rsqrt_ui(arb_t z, ulong x, slong prec) noexcept
203
+ void arb_sqrt1pm1(arb_t z, const arb_t x, slong prec) noexcept
204
+ void arb_root_ui(arb_t z, const arb_t x, ulong k, slong prec) noexcept
205
+ void arb_root(arb_t z, const arb_t x, ulong k, slong prec) noexcept
206
+ void arb_sqr(arb_t y, const arb_t x, slong prec) noexcept
207
+ void arb_pow_fmpz_binexp(arb_t y, const arb_t b, const fmpz_t e, slong prec) noexcept
208
+ void arb_pow_fmpz(arb_t y, const arb_t b, const fmpz_t e, slong prec) noexcept
209
+ void arb_pow_ui(arb_t y, const arb_t b, ulong e, slong prec) noexcept
210
+ void arb_ui_pow_ui(arb_t y, ulong b, ulong e, slong prec) noexcept
211
+ void arb_si_pow_ui(arb_t y, slong b, ulong e, slong prec) noexcept
212
+ void arb_pow_fmpq(arb_t y, const arb_t x, const fmpq_t a, slong prec) noexcept
213
+ void arb_pow(arb_t z, const arb_t x, const arb_t y, slong prec) noexcept
214
+ void arb_log_ui(arb_t z, ulong x, slong prec) noexcept
215
+ void arb_log_fmpz(arb_t z, const fmpz_t x, slong prec) noexcept
216
+ void arb_log_arf(arb_t z, const arf_t x, slong prec) noexcept
217
+ void arb_log(arb_t z, const arb_t x, slong prec) noexcept
218
+ void arb_log_ui_from_prev(arb_t log_k1, ulong k1, arb_t log_k0, ulong k0, slong prec) noexcept
219
+ void arb_log1p(arb_t z, const arb_t x, slong prec) noexcept
220
+ void arb_log_base_ui(arb_t res, const arb_t x, ulong b, slong prec) noexcept
221
+ void arb_log_hypot(arb_t res, const arb_t x, const arb_t y, slong prec) noexcept
222
+ void arb_exp(arb_t z, const arb_t x, slong prec) noexcept
223
+ void arb_expm1(arb_t z, const arb_t x, slong prec) noexcept
224
+ void arb_exp_invexp(arb_t z, arb_t w, const arb_t x, slong prec) noexcept
225
+ void arb_sin(arb_t s, const arb_t x, slong prec) noexcept
226
+ void arb_cos(arb_t c, const arb_t x, slong prec) noexcept
227
+ void arb_sin_cos(arb_t s, arb_t c, const arb_t x, slong prec) noexcept
228
+ void arb_sin_pi(arb_t s, const arb_t x, slong prec) noexcept
229
+ void arb_cos_pi(arb_t c, const arb_t x, slong prec) noexcept
230
+ void arb_sin_cos_pi(arb_t s, arb_t c, const arb_t x, slong prec) noexcept
231
+ void arb_tan(arb_t y, const arb_t x, slong prec) noexcept
232
+ void arb_cot(arb_t y, const arb_t x, slong prec) noexcept
233
+ void arb_sin_cos_pi_fmpq(arb_t s, arb_t c, const fmpq_t x, slong prec) noexcept
234
+ void arb_sin_pi_fmpq(arb_t s, const fmpq_t x, slong prec) noexcept
235
+ void arb_cos_pi_fmpq(arb_t c, const fmpq_t x, slong prec) noexcept
236
+ void arb_tan_pi(arb_t y, const arb_t x, slong prec) noexcept
237
+ void arb_cot_pi(arb_t y, const arb_t x, slong prec) noexcept
238
+ void arb_sec(arb_t res, const arb_t x, slong prec) noexcept
239
+ void arb_csc(arb_t res, const arb_t x, slong prec) noexcept
240
+ void arb_csc_pi(arb_t res, const arb_t x, slong prec) noexcept
241
+ void arb_sinc(arb_t z, const arb_t x, slong prec) noexcept
242
+ void arb_sinc_pi(arb_t z, const arb_t x, slong prec) noexcept
243
+ void arb_atan_arf(arb_t z, const arf_t x, slong prec) noexcept
244
+ void arb_atan(arb_t z, const arb_t x, slong prec) noexcept
245
+ void arb_atan2(arb_t z, const arb_t b, const arb_t a, slong prec) noexcept
246
+ void arb_asin(arb_t z, const arb_t x, slong prec) noexcept
247
+ void arb_acos(arb_t z, const arb_t x, slong prec) noexcept
248
+ void arb_sinh(arb_t s, const arb_t x, slong prec) noexcept
249
+ void arb_cosh(arb_t c, const arb_t x, slong prec) noexcept
250
+ void arb_sinh_cosh(arb_t s, arb_t c, const arb_t x, slong prec) noexcept
251
+ void arb_tanh(arb_t y, const arb_t x, slong prec) noexcept
252
+ void arb_coth(arb_t y, const arb_t x, slong prec) noexcept
253
+ void arb_sech(arb_t res, const arb_t x, slong prec) noexcept
254
+ void arb_csch(arb_t res, const arb_t x, slong prec) noexcept
255
+ void arb_atanh(arb_t z, const arb_t x, slong prec) noexcept
256
+ void arb_asinh(arb_t z, const arb_t x, slong prec) noexcept
257
+ void arb_acosh(arb_t z, const arb_t x, slong prec) noexcept
258
+ void arb_const_pi(arb_t z, slong prec) noexcept
259
+ void arb_const_sqrt_pi(arb_t z, slong prec) noexcept
260
+ void arb_const_log_sqrt2pi(arb_t z, slong prec) noexcept
261
+ void arb_const_log2(arb_t z, slong prec) noexcept
262
+ void arb_const_log10(arb_t z, slong prec) noexcept
263
+ void arb_const_euler(arb_t z, slong prec) noexcept
264
+ void arb_const_catalan(arb_t z, slong prec) noexcept
265
+ void arb_const_e(arb_t z, slong prec) noexcept
266
+ void arb_const_khinchin(arb_t z, slong prec) noexcept
267
+ void arb_const_glaisher(arb_t z, slong prec) noexcept
268
+ void arb_const_apery(arb_t z, slong prec) noexcept
269
+ void arb_const_reciprocal_fibonacci(arb_t z, slong prec) noexcept
270
+ void arb_lambertw(arb_t res, const arb_t x, int flags, slong prec) noexcept
271
+ void arb_rising_ui(arb_t z, const arb_t x, ulong n, slong prec) noexcept
272
+ void arb_rising(arb_t z, const arb_t x, const arb_t n, slong prec) noexcept
273
+ void arb_rising_fmpq_ui(arb_t z, const fmpq_t x, ulong n, slong prec) noexcept
274
+ void arb_fac_ui(arb_t z, ulong n, slong prec) noexcept
275
+ void arb_doublefac_ui(arb_t z, ulong n, slong prec) noexcept
276
+ void arb_bin_ui(arb_t z, const arb_t n, ulong k, slong prec) noexcept
277
+ void arb_bin_uiui(arb_t z, ulong n, ulong k, slong prec) noexcept
278
+ void arb_gamma(arb_t z, const arb_t x, slong prec) noexcept
279
+ void arb_gamma_fmpq(arb_t z, const fmpq_t x, slong prec) noexcept
280
+ void arb_gamma_fmpz(arb_t z, const fmpz_t x, slong prec) noexcept
281
+ void arb_lgamma(arb_t z, const arb_t x, slong prec) noexcept
282
+ void arb_rgamma(arb_t z, const arb_t x, slong prec) noexcept
283
+ void arb_digamma(arb_t y, const arb_t x, slong prec) noexcept
284
+ void arb_zeta_ui_vec_borwein(arb_ptr z, ulong start, slong num, ulong step, slong prec) noexcept
285
+ void arb_zeta_ui_asymp(arb_t x, ulong s, slong prec) noexcept
286
+ void arb_zeta_ui_euler_product(arb_t z, ulong s, slong prec) noexcept
287
+ void arb_zeta_ui_bernoulli(arb_t x, ulong s, slong prec) noexcept
288
+ void arb_zeta_ui_borwein_bsplit(arb_t x, ulong s, slong prec) noexcept
289
+ void arb_zeta_ui_vec(arb_ptr x, ulong start, slong num, slong prec) noexcept
290
+ void arb_zeta_ui_vec_even(arb_ptr x, ulong start, slong num, slong prec) noexcept
291
+ void arb_zeta_ui_vec_odd(arb_ptr x, ulong start, slong num, slong prec) noexcept
292
+ void arb_zeta_ui(arb_t x, ulong s, slong prec) noexcept
293
+ void arb_zeta(arb_t z, const arb_t s, slong prec) noexcept
294
+ void arb_hurwitz_zeta(arb_t z, const arb_t s, const arb_t a, slong prec) noexcept
295
+ void arb_bernoulli_ui(arb_t b, ulong n, slong prec) noexcept
296
+ void arb_bernoulli_fmpz(arb_t b, const fmpz_t n, slong prec) noexcept
297
+ void arb_bernoulli_ui_zeta(arb_t b, ulong n, slong prec) noexcept
298
+ void arb_bernoulli_poly_ui(arb_t res, ulong n, const arb_t x, slong prec) noexcept
299
+ void arb_power_sum_vec(arb_ptr res, const arb_t a, const arb_t b, slong len, slong prec) noexcept
300
+ void arb_polylog(arb_t w, const arb_t s, const arb_t z, slong prec) noexcept
301
+ void arb_polylog_si(arb_t w, slong s, const arb_t z, slong prec) noexcept
302
+ void arb_fib_fmpz(arb_t z, const fmpz_t n, slong prec) noexcept
303
+ void arb_fib_ui(arb_t z, ulong n, slong prec) noexcept
304
+ void arb_agm(arb_t z, const arb_t x, const arb_t y, slong prec) noexcept
305
+ void arb_chebyshev_t_ui(arb_t a, ulong n, const arb_t x, slong prec) noexcept
306
+ void arb_chebyshev_u_ui(arb_t a, ulong n, const arb_t x, slong prec) noexcept
307
+ void arb_chebyshev_t2_ui(arb_t a, arb_t b, ulong n, const arb_t x, slong prec) noexcept
308
+ void arb_chebyshev_u2_ui(arb_t a, arb_t b, ulong n, const arb_t x, slong prec) noexcept
309
+ void arb_bell_sum_bsplit(arb_t res, const fmpz_t n, const fmpz_t a, const fmpz_t b, const fmpz_t mmag, slong prec) noexcept
310
+ void arb_bell_sum_taylor(arb_t res, const fmpz_t n, const fmpz_t a, const fmpz_t b, const fmpz_t mmag, slong prec) noexcept
311
+ void arb_bell_fmpz(arb_t res, const fmpz_t n, slong prec) noexcept
312
+ void arb_bell_ui(arb_t res, ulong n, slong prec) noexcept
313
+ void arb_euler_number_fmpz(arb_t res, const fmpz_t n, slong prec) noexcept
314
+ void arb_euler_number_ui(arb_t res, ulong n, slong prec) noexcept
315
+ void arb_fmpz_euler_number_ui_multi_mod(fmpz_t res, ulong n, double alpha) noexcept
316
+ void arb_fmpz_euler_number_ui(fmpz_t res, ulong n) noexcept
317
+ void arb_partitions_fmpz(arb_t res, const fmpz_t n, slong prec) noexcept
318
+ void arb_partitions_ui(arb_t res, ulong n, slong prec) noexcept
319
+ void arb_primorial_nth_ui(arb_t res, ulong n, slong prec) noexcept
320
+ void arb_primorial_ui(arb_t res, ulong n, slong prec) noexcept
321
+ void _arb_atan_taylor_naive(mp_ptr y, mp_limb_t * error, mp_srcptr x, mp_size_t xn, ulong N, int alternating) noexcept
322
+ void _arb_atan_taylor_rs(mp_ptr y, mp_limb_t * error, mp_srcptr x, mp_size_t xn, ulong N, int alternating) noexcept
323
+ void _arb_exp_taylor_naive(mp_ptr y, mp_limb_t * error, mp_srcptr x, mp_size_t xn, ulong N) noexcept
324
+ void _arb_exp_taylor_rs(mp_ptr y, mp_limb_t * error, mp_srcptr x, mp_size_t xn, ulong N) noexcept
325
+ void _arb_sin_cos_taylor_naive(mp_ptr ysin, mp_ptr ycos, mp_limb_t * error, mp_srcptr x, mp_size_t xn, ulong N) noexcept
326
+ void _arb_sin_cos_taylor_rs(mp_ptr ysin, mp_ptr ycos, mp_limb_t * error, mp_srcptr x, mp_size_t xn, ulong N, int sinonly, int alternating) noexcept
327
+ int _arb_get_mpn_fixed_mod_log2(mp_ptr w, fmpz_t q, mp_limb_t * error, const arf_t x, mp_size_t wn) noexcept
328
+ int _arb_get_mpn_fixed_mod_pi4(mp_ptr w, fmpz_t q, int * octant, mp_limb_t * error, const arf_t x, mp_size_t wn) noexcept
329
+ slong _arb_exp_taylor_bound(slong mag, slong prec) noexcept
330
+ void arb_exp_arf_bb(arb_t z, const arf_t x, slong prec, int m1) noexcept
331
+ void _arb_exp_sum_bs_simple(fmpz_t T, fmpz_t Q, flint_bitcnt_t * Qexp, const fmpz_t x, flint_bitcnt_t r, slong N) noexcept
332
+ void _arb_exp_sum_bs_powtab(fmpz_t T, fmpz_t Q, flint_bitcnt_t * Qexp, const fmpz_t x, flint_bitcnt_t r, slong N) noexcept
333
+ void arb_exp_arf_rs_generic(arb_t res, const arf_t x, slong prec, int minus_one) noexcept
334
+ void _arb_atan_sum_bs_simple(fmpz_t T, fmpz_t Q, flint_bitcnt_t * Qexp, const fmpz_t x, flint_bitcnt_t r, slong N) noexcept
335
+ void _arb_atan_sum_bs_powtab(fmpz_t T, fmpz_t Q, flint_bitcnt_t * Qexp, const fmpz_t x, flint_bitcnt_t r, slong N) noexcept
336
+ void arb_atan_arf_bb(arb_t z, const arf_t x, slong prec) noexcept
337
+ void arb_atan_frac_bsplit(arb_t s, const fmpz_t p, const fmpz_t q, int hyperbolic, slong prec) noexcept
338
+ void arb_sin_cos_arf_generic(arb_t s, arb_t c, const arf_t x, slong prec) noexcept
339
+ void arb_sin_cos_arf_bb(arb_t s, arb_t c, const arf_t x, slong prec) noexcept
340
+ void arb_sin_cos_wide(arb_t s, arb_t c, const arb_t x, slong prec) noexcept
341
+ void arb_sin_cos_generic(arb_t s, arb_t c, const arb_t x, slong prec) noexcept
342
+ void arb_log_primes_vec_bsplit(arb_ptr res, slong n, slong prec) noexcept
343
+ void _arb_log_p_ensure_cached(slong prec) noexcept
344
+ void arb_exp_arf_log_reduction(arb_t res, const arf_t x, slong prec, int minus_one) noexcept
345
+ void arb_exp_arf_generic(arb_t z, const arf_t x, slong prec, int minus_one) noexcept
346
+ void arb_exp_arf(arb_t z, const arf_t x, slong prec, int minus_one, slong maglim) noexcept
347
+ void arb_log_newton(arb_t res, const arb_t x, slong prec) noexcept
348
+ void arb_log_arf_newton(arb_t res, const arf_t x, slong prec) noexcept
349
+ void arb_atan_gauss_primes_vec_bsplit(arb_ptr res, slong n, slong prec) noexcept
350
+ void _arb_atan_gauss_p_ensure_cached(slong prec) noexcept
351
+ void arb_sin_cos_arf_atan_reduction(arb_t res1, arb_t res2, const arf_t x, slong prec) noexcept
352
+ void arb_atan_newton(arb_t res, const arb_t x, slong prec) noexcept
353
+ void arb_atan_arf_newton(arb_t res, const arf_t x, slong prec) noexcept
354
+ void _arb_vec_zero(arb_ptr vec, slong n) noexcept
355
+ bint _arb_vec_is_zero(arb_srcptr vec, slong len) noexcept
356
+ bint _arb_vec_is_finite(arb_srcptr x, slong len) noexcept
357
+ bint _arb_vec_equal(arb_srcptr vec1, arb_srcptr vec2, slong len) noexcept
358
+ bint _arb_vec_overlaps(arb_srcptr vec1, arb_srcptr vec2, slong len) noexcept
359
+ bint _arb_vec_contains(arb_srcptr vec1, arb_srcptr vec2, slong len) noexcept
360
+ void _arb_vec_set(arb_ptr res, arb_srcptr vec, slong len) noexcept
361
+ void _arb_vec_set_round(arb_ptr res, arb_srcptr vec, slong len, slong prec) noexcept
362
+ void _arb_vec_swap(arb_ptr vec1, arb_ptr vec2, slong len) noexcept
363
+ void _arb_vec_neg(arb_ptr B, arb_srcptr A, slong n) noexcept
364
+ void _arb_vec_sub(arb_ptr C, arb_srcptr A, arb_srcptr B, slong n, slong prec) noexcept
365
+ void _arb_vec_add(arb_ptr C, arb_srcptr A, arb_srcptr B, slong n, slong prec) noexcept
366
+ void _arb_vec_scalar_mul(arb_ptr res, arb_srcptr vec, slong len, const arb_t c, slong prec) noexcept
367
+ void _arb_vec_scalar_div(arb_ptr res, arb_srcptr vec, slong len, const arb_t c, slong prec) noexcept
368
+ void _arb_vec_scalar_mul_fmpz(arb_ptr res, arb_srcptr vec, slong len, const fmpz_t c, slong prec) noexcept
369
+ void _arb_vec_scalar_mul_2exp_si(arb_ptr res, arb_srcptr src, slong len, slong c) noexcept
370
+ void _arb_vec_scalar_addmul(arb_ptr res, arb_srcptr vec, slong len, const arb_t c, slong prec) noexcept
371
+ void _arb_vec_get_mag(mag_t bound, arb_srcptr vec, slong len) noexcept
372
+ slong _arb_vec_bits(arb_srcptr x, slong len) noexcept
373
+ void _arb_vec_set_powers(arb_ptr xs, const arb_t x, slong len, slong prec) noexcept
374
+ void _arb_vec_add_error_arf_vec(arb_ptr res, arf_srcptr err, slong len) noexcept
375
+ void _arb_vec_add_error_mag_vec(arb_ptr res, mag_srcptr err, slong len) noexcept
376
+ void _arb_vec_indeterminate(arb_ptr vec, slong len) noexcept
377
+ void _arb_vec_trim(arb_ptr res, arb_srcptr vec, slong len) noexcept
378
+ int _arb_vec_get_unique_fmpz_vec(fmpz * res, arb_srcptr vec, slong len) noexcept
379
+ void _arb_vec_printn(arb_srcptr vec, slong len, slong digits, ulong flags) noexcept
380
+ void _arb_vec_printd(arb_srcptr vec, slong len, slong ndigits) noexcept
381
+
382
+ from .arb_macros cimport *
@@ -0,0 +1,31 @@
1
+ # sage_setup: distribution = sagemath-flint
2
+ # distutils: libraries = flint
3
+ # distutils: depends = flint/arb_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
+ void arf_interval_init(arf_interval_t v) noexcept
19
+ void arf_interval_clear(arf_interval_t v) noexcept
20
+ arf_interval_ptr _arf_interval_vec_init(slong n) noexcept
21
+ void _arf_interval_vec_clear(arf_interval_ptr v, slong n) noexcept
22
+ void arf_interval_set(arf_interval_t v, const arf_interval_t u) noexcept
23
+ void arf_interval_swap(arf_interval_t v, arf_interval_t u) noexcept
24
+ void arf_interval_get_arb(arb_t x, const arf_interval_t v, slong prec) noexcept
25
+ void arf_interval_printd(const arf_interval_t v, slong n) noexcept
26
+ void arf_interval_fprintd(FILE * file, const arf_interval_t v, slong n) noexcept
27
+ slong arb_calc_isolate_roots(arf_interval_ptr * found, int ** flags, arb_calc_func_t func, void * param, const arf_interval_t interval, slong maxdepth, slong maxeval, slong maxfound, slong prec) noexcept
28
+ int arb_calc_refine_root_bisect(arf_interval_t r, arb_calc_func_t func, void * param, const arf_interval_t start, slong it, slong prec) noexcept
29
+ void arb_calc_newton_conv_factor(arf_t conv_factor, arb_calc_func_t func, void * param, const arb_t conv_region, slong prec) noexcept
30
+ int arb_calc_newton_step(arb_t xnew, arb_calc_func_t func, void * param, const arb_t x, const arb_t conv_region, const arf_t conv_factor, slong prec) noexcept
31
+ int arb_calc_refine_root_newton(arb_t r, arb_calc_func_t func, void * param, const arb_t start, const arb_t conv_region, const arf_t conv_factor, slong eval_extra_prec, slong prec) noexcept
@@ -0,0 +1,34 @@
1
+ # sage_setup: distribution = sagemath-flint
2
+ # distutils: libraries = flint
3
+ # distutils: depends = flint/arb_fmpz_poly.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 _arb_fmpz_poly_evaluate_arb_horner(arb_t res, const fmpz * poly, slong len, const arb_t x, slong prec) noexcept
19
+ void arb_fmpz_poly_evaluate_arb_horner(arb_t res, const fmpz_poly_t poly, const arb_t x, slong prec) noexcept
20
+ void _arb_fmpz_poly_evaluate_arb_rectangular(arb_t res, const fmpz * poly, slong len, const arb_t x, slong prec) noexcept
21
+ void arb_fmpz_poly_evaluate_arb_rectangular(arb_t res, const fmpz_poly_t poly, const arb_t x, slong prec) noexcept
22
+ void _arb_fmpz_poly_evaluate_arb(arb_t res, const fmpz * poly, slong len, const arb_t x, slong prec) noexcept
23
+ void arb_fmpz_poly_evaluate_arb(arb_t res, const fmpz_poly_t poly, const arb_t x, slong prec) noexcept
24
+ void _arb_fmpz_poly_evaluate_acb_horner(acb_t res, const fmpz * poly, slong len, const acb_t x, slong prec) noexcept
25
+ void arb_fmpz_poly_evaluate_acb_horner(acb_t res, const fmpz_poly_t poly, const acb_t x, slong prec) noexcept
26
+ void _arb_fmpz_poly_evaluate_acb_rectangular(acb_t res, const fmpz * poly, slong len, const acb_t x, slong prec) noexcept
27
+ void arb_fmpz_poly_evaluate_acb_rectangular(acb_t res, const fmpz_poly_t poly, const acb_t x, slong prec) noexcept
28
+ void _arb_fmpz_poly_evaluate_acb(acb_t res, const fmpz * poly, slong len, const acb_t x, slong prec) noexcept
29
+ void arb_fmpz_poly_evaluate_acb(acb_t res, const fmpz_poly_t poly, const acb_t x, slong prec) noexcept
30
+ ulong arb_fmpz_poly_deflation(const fmpz_poly_t poly) noexcept
31
+ void arb_fmpz_poly_deflate(fmpz_poly_t res, const fmpz_poly_t poly, ulong deflation) noexcept
32
+ void arb_fmpz_poly_complex_roots(acb_ptr roots, const fmpz_poly_t poly, int flags, slong prec) noexcept
33
+ void arb_fmpz_poly_cos_minpoly(fmpz_poly_t res, ulong n) noexcept
34
+ void arb_fmpz_poly_gauss_period_minpoly(fmpz_poly_t res, ulong q, ulong n) noexcept