File tree Expand file tree Collapse file tree 5 files changed +7
-3
lines changed Expand file tree Collapse file tree 5 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 6868 'flint.flintlib' ,
6969 'flint.flint_base' ,
7070 'flint.types' ,
71+ 'flint.functions' ,
7172 'flint.utils' ,
7273 'flint.test' ,
7374]
102103 ("flint.types.dirichlet" , ["src/flint/types/dirichlet.pyx" ]),
103104 ("flint.flint_base.flint_base" , ["src/flint/flint_base/flint_base.pyx" ]),
104105 ("flint.flint_base.flint_context" , ["src/flint/flint_base/flint_context.pyx" ]),
106+ # Helper for unittests
107+ ("flint.functions.showgood" , ["src/flint/functions/showgood.pyx" ]),
105108
106109]
107110
Original file line number Diff line number Diff line change 2121from .types .acb_mat import *
2222from .types .acb_series import *
2323from .types .fmpz_mpoly import *
24+ from .functions .showgood import showgood
2425
2526__version__ = '0.4.4'
Original file line number Diff line number Diff line change 1- from .utils.conversion cimport dps_to_prec
1+ from flint.flint_base.flint_context cimport thectx
2+ from flint.utils.conversion cimport dps_to_prec
23from flint.types.arb_mat cimport arb_mat
34from flint.types.acb_mat cimport acb_mat
45from flint.types.arb_poly cimport arb_poly
@@ -10,6 +11,7 @@ from flint.types.acb_series cimport acb_series
1011from flint.flintlib.arb cimport *
1112from flint.flintlib.acb cimport *
1213
14+ ctx = thectx
1315
1416# xxx: this doesn't work when changed to a cdef function. why?
1517def __goodness (x , bint parts = True , metric = None ):
Original file line number Diff line number Diff line change @@ -12,5 +12,3 @@ cdef flint_rand_t global_random_state
1212flint_randinit(global_random_state)
1313
1414ctx = thectx
15-
16- include " functions.pyx"
You can’t perform that action at this time.
0 commit comments