Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Some fixes & improvements to autogenerated flint .pxd #37193

Merged
merged 5 commits into from
Feb 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions src/sage/libs/arb/types.pxd
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,8 @@ from sage.libs.flint.types cimport (
acb_mat_t,
acb_poly_struct,
acb_poly_t,
acb_poly_ptr,
acb_poly_srcptr,
acb_calc_integrate_opt_struct,
acb_calc_integrate_opt_t,
acb_calc_func_t,
arb_poly_struct,
arb_poly_t,
arb_poly_ptr,
arb_poly_srcptr)
arb_poly_t)
5 changes: 5 additions & 0 deletions src/sage/libs/flint/flint_sage.pyx
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# distutils: extra_compile_args = -D_XPG6

# WARNING: src/sage/libs/flint/flint_sage.pyx is generated from
# src/sage_setup/autogen/flint/templates/flint_sage.pyx.template;
# please make sure that you are modifying the correct file!

"""
Flint imports
Expand Down
4 changes: 4 additions & 0 deletions src/sage/libs/flint/flint_wrap.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/* WARNING: src/sage/libs/flint/flint_wrap.h is generated from
* src/sage_setup/autogen/flint/templates/flint_wrap.h.template
* please make sure that you are modifying the correct file! */

#ifndef SAGE_FLINT_WRAP_H
#define SAGE_FLINT_WRAP_H
/* Using flint headers together in the same module as headers from
Expand Down
16 changes: 10 additions & 6 deletions src/sage/libs/flint/types.pxd
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# distutils: depends = flint/acb.h flint/acb_calc.h flint/acb_dft.h flint/acb_dirichlet.h flint/acb_elliptic.h flint/acb_hypgeom.h flint/acb_mat.h flint/acb_modular.h flint/acb_poly.h flint/acf.h flint/aprcl.h flint/arb.h flint/arb_calc.h flint/arb_fmpz_poly.h flint/arb_fpwrap.h flint/arb_hypgeom.h flint/arb_mat.h flint/arb_poly.h flint/arf.h flint/arith.h flint/bernoulli.h flint/bool_mat.h flint/ca.h flint/ca_ext.h flint/ca_field.h flint/ca_mat.h flint/ca_poly.h flint/ca_vec.h flint/calcium.h flint/d_mat.h flint/d_vec.h flint/dirichlet.h flint/dlog.h flint/double_extras.h flint/double_interval.h flint/fexpr.h flint/fexpr_builtin.h flint/fft.h flint/flint.h flint/fmpq.h flint/fmpq_mat.h flint/fmpq_mpoly.h flint/fmpq_mpoly_factor.h flint/fmpq_poly.h flint/fmpq_vec.h flint/fmpz.h flint/fmpz_extras.h flint/fmpz_factor.h flint/fmpz_lll.h flint/fmpz_mat.h flint/fmpz_mod.h flint/fmpz_mod_mat.h flint/fmpz_mod_mpoly.h flint/fmpz_mod_mpoly_factor.h flint/fmpz_mod_poly.h flint/fmpz_mod_poly_factor.h flint/fmpz_mod_vec.h flint/fmpz_mpoly.h flint/fmpz_mpoly_factor.h flint/fmpz_mpoly_q.h flint/fmpz_poly.h flint/fmpz_poly_factor.h flint/fmpz_poly_mat.h flint/fmpz_poly_q.h flint/fmpz_vec.h flint/fmpzi.h flint/fq.h flint/fq_default.h flint/fq_default_mat.h flint/fq_default_poly.h flint/fq_default_poly_factor.h flint/fq_embed.h flint/fq_mat.h flint/fq_nmod.h flint/fq_nmod_embed.h flint/fq_nmod_mat.h flint/fq_nmod_mpoly.h flint/fq_nmod_mpoly_factor.h flint/fq_nmod_poly.h flint/fq_nmod_poly_factor.h flint/fq_nmod_vec.h flint/fq_poly.h flint/fq_poly_factor.h flint/fq_vec.h flint/fq_zech.h flint/fq_zech_embed.h flint/fq_zech_mat.h flint/fq_zech_poly.h flint/fq_zech_poly_factor.h flint/fq_zech_vec.h flint/gr.h flint/gr_generic.h flint/gr_mat.h flint/gr_mpoly.h flint/gr_poly.h flint/gr_special.h flint/gr_vec.h flint/hypgeom.h flint/long_extras.h flint/mag.h flint/mpf_mat.h flint/mpf_vec.h flint/mpfr_mat.h flint/mpfr_vec.h flint/mpn_extras.h flint/mpoly.h flint/nf.h flint/nf_elem.h flint/nmod.h flint/nmod_mat.h flint/nmod_mpoly.h flint/nmod_mpoly_factor.h flint/nmod_poly.h flint/nmod_poly_factor.h flint/nmod_poly_mat.h flint/nmod_types.h flint/nmod_vec.h flint/padic.h flint/padic_mat.h flint/padic_poly.h flint/partitions.h flint/perm.h flint/profiler.h flint/qadic.h flint/qfb.h flint/qqbar.h flint/qsieve.h flint/thread_pool.h flint/ulong_extras.h

# WARNING: src/sage/libs/flint/types.pxd is generated from
# src/sage_setup/autogen/flint/templates/types.pxd.template
# please make sure that you are modifying the correct file!

"""
Declarations for FLINT types
"""
Expand Down Expand Up @@ -129,10 +133,10 @@ cdef extern from "flint_wrap.h":
ctypedef arb_mat_struct arb_mat_t[1]

ctypedef struct arb_poly_struct:
pass
arb_ptr coeffs
long alloc
long length
ctypedef arb_poly_struct[1] arb_poly_t
ctypedef arb_poly_struct * arb_poly_ptr
ctypedef const arb_poly_struct * arb_poly_srcptr


# flint/arb_calc.h
Expand Down Expand Up @@ -165,10 +169,10 @@ cdef extern from "flint_wrap.h":

# flint/acb_poly.h
ctypedef struct acb_poly_struct:
pass
acb_ptr coeffs
long alloc
long length
ctypedef acb_poly_struct[1] acb_poly_t
ctypedef acb_poly_struct * acb_poly_ptr
ctypedef const acb_poly_struct * acb_poly_srcptr

# flint/acb_calc.h
ctypedef struct acb_calc_integrate_opt_struct:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# distutils: extra_compile_args = -D_XPG6

# WARNING: src/sage/libs/flint/flint_sage.pyx is generated from
# src/sage_setup/autogen/flint/templates/flint_sage.pyx.template;
# please make sure that you are modifying the correct file!

"""
Flint imports

Expand Down
10 changes: 10 additions & 0 deletions src/sage_setup/autogen/flint/templates/flint_wrap.h.template
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/* WARNING: src/sage/libs/flint/flint_wrap.h is generated from
* src/sage_setup/autogen/flint/templates/flint_wrap.h.template
* please make sure that you are modifying the correct file! */

#ifndef SAGE_FLINT_WRAP_H
#define SAGE_FLINT_WRAP_H
/* Using flint headers together in the same module as headers from
Expand Down Expand Up @@ -40,4 +44,10 @@

#pragma pop_macro("ulong")

/* CPU_SIZE_1 and SIZE_RED_FAILURE_THRESH are defined as macros in flint/fmpz_lll.h
* and as variables in fplll/defs.h, which breaks build if linbox is compiled with fplll */

#undef CPU_SIZE_1
#undef SIZE_RED_FAILURE_THRESH

#endif
16 changes: 10 additions & 6 deletions src/sage_setup/autogen/flint/templates/types.pxd.template
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# distutils: depends = {HEADER_LIST}

# WARNING: src/sage/libs/flint/types.pxd is generated from
# src/sage_setup/autogen/flint/templates/types.pxd.template
# please make sure that you are modifying the correct file!

"""
Declarations for FLINT types
"""
Expand Down Expand Up @@ -129,10 +133,10 @@ cdef extern from "flint_wrap.h":
ctypedef arb_mat_struct arb_mat_t[1]

ctypedef struct arb_poly_struct:
pass
arb_ptr coeffs
long alloc
long length
ctypedef arb_poly_struct[1] arb_poly_t
ctypedef arb_poly_struct * arb_poly_ptr
ctypedef const arb_poly_struct * arb_poly_srcptr


# flint/arb_calc.h
Expand Down Expand Up @@ -165,10 +169,10 @@ cdef extern from "flint_wrap.h":

# flint/acb_poly.h
ctypedef struct acb_poly_struct:
pass
acb_ptr coeffs
long alloc
long length
ctypedef acb_poly_struct[1] acb_poly_t
ctypedef acb_poly_struct * acb_poly_ptr
ctypedef const acb_poly_struct * acb_poly_srcptr

# flint/acb_calc.h
ctypedef struct acb_calc_integrate_opt_struct:
Expand Down
Loading