File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed
src/sage_setup/autogen/flint/templates Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ Import this module::
12
12
13
13
sage: import sage.libs.flint.flint_sage
14
14
15
- We verify that :trac :`6919` is correctly fixed::
15
+ We verify that :issue :`6919` is correctly fixed::
16
16
17
17
sage: R.<x> = PolynomialRing(ZZ)
18
18
sage: A = 2^(2^17+2^15)
Original file line number Diff line number Diff line change @@ -24,6 +24,9 @@ ctypedef mp_limb_t ulong
24
24
ctypedef mp_limb_signed_t slong
25
25
ctypedef mp_limb_t flint_bitcnt_t
26
26
27
+ # New in flint 3.2.0-rc1
28
+ ctypedef mp_ptr nn_ptr
29
+ ctypedef mp_srcptr nn_srcptr
27
30
28
31
cdef extern from "flint_wrap.h":
29
32
# flint/fmpz.h
@@ -269,6 +272,16 @@ cdef extern from "flint_wrap.h":
269
272
ctypedef struct flint_rand_s:
270
273
pass
271
274
ctypedef flint_rand_s flint_rand_t[1]
275
+ ctypedef enum flint_err_t:
276
+ # flint_autogen.py does not support parsing .. enum:: yet
277
+ FLINT_ERROR
278
+ FLINT_OVERFLOW
279
+ FLINT_IMPINV
280
+ FLINT_DOMERR
281
+ FLINT_DIVZERO
282
+ FLINT_EXPOF
283
+ FLINT_INEXACT
284
+ FLINT_TEST_FAIL
272
285
273
286
cdef long FLINT_BITS
274
287
cdef long FLINT_D_BITS
You can’t perform that action at this time.
0 commit comments