mirror of
https://github.com/vale981/arb
synced 2025-03-05 17:31:38 -05:00
long -> slong acb_calc.h.
This commit is contained in:
parent
24217696d7
commit
4bf882a7ea
1 changed files with 3 additions and 3 deletions
|
@ -36,13 +36,13 @@ extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
typedef int (*acb_calc_func_t)(acb_ptr out,
|
typedef int (*acb_calc_func_t)(acb_ptr out,
|
||||||
const acb_t inp, void * param, long order, long prec);
|
const acb_t inp, void * param, slong order, slong prec);
|
||||||
|
|
||||||
/* Bounds */
|
/* Bounds */
|
||||||
|
|
||||||
void acb_calc_cauchy_bound(arb_t bound, acb_calc_func_t func,
|
void acb_calc_cauchy_bound(arb_t bound, acb_calc_func_t func,
|
||||||
void * param, const acb_t x, const arb_t radius,
|
void * param, const acb_t x, const arb_t radius,
|
||||||
long maxdepth, long prec);
|
slong maxdepth, slong prec);
|
||||||
|
|
||||||
/* Integration */
|
/* Integration */
|
||||||
|
|
||||||
|
@ -51,7 +51,7 @@ int acb_calc_integrate_taylor(acb_t res,
|
||||||
const acb_t a, const acb_t b,
|
const acb_t a, const acb_t b,
|
||||||
const arf_t inner_radius,
|
const arf_t inner_radius,
|
||||||
const arf_t outer_radius,
|
const arf_t outer_radius,
|
||||||
long accuracy_goal, long prec);
|
slong accuracy_goal, slong prec);
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue