mirror of
https://github.com/vale981/arb
synced 2025-03-04 17:01:40 -05:00
Change const arb_srcptr -> arb_srcptr
arb_srcptr is already const, therefore const arb_srcptr is not needed
This commit is contained in:
parent
0fa7b58d37
commit
ddfc85b86d
7 changed files with 12 additions and 12 deletions
12
arb_poly.h
12
arb_poly.h
|
@ -564,11 +564,11 @@ void arb_poly_exp_series_basecase(arb_poly_t f, const arb_poly_t h, slong n, slo
|
|||
void _arb_poly_exp_series(arb_ptr f, arb_srcptr h, slong hlen, slong n, slong prec);
|
||||
void arb_poly_exp_series(arb_poly_t f, const arb_poly_t h, slong n, slong prec);
|
||||
|
||||
void _arb_poly_sinh_cosh_series_basecase(arb_ptr s, arb_ptr c, const arb_srcptr h, slong hlen, slong n, slong prec);
|
||||
void _arb_poly_sinh_cosh_series_basecase(arb_ptr s, arb_ptr c, arb_srcptr h, slong hlen, slong n, slong prec);
|
||||
void arb_poly_sinh_cosh_series_basecase(arb_poly_t s, arb_poly_t c, const arb_poly_t h, slong n, slong prec);
|
||||
void _arb_poly_sinh_cosh_series_exponential(arb_ptr s, arb_ptr c, const arb_srcptr h, slong hlen, slong n, slong prec);
|
||||
void _arb_poly_sinh_cosh_series_exponential(arb_ptr s, arb_ptr c, arb_srcptr h, slong hlen, slong n, slong prec);
|
||||
void arb_poly_sinh_cosh_series_exponential(arb_poly_t s, arb_poly_t c, const arb_poly_t h, slong n, slong prec);
|
||||
void _arb_poly_sinh_cosh_series(arb_ptr s, arb_ptr c, const arb_srcptr h, slong hlen, slong n, slong prec);
|
||||
void _arb_poly_sinh_cosh_series(arb_ptr s, arb_ptr c, arb_srcptr h, slong hlen, slong n, slong prec);
|
||||
void arb_poly_sinh_cosh_series(arb_poly_t s, arb_poly_t c, const arb_poly_t h, slong n, slong prec);
|
||||
|
||||
void _arb_poly_sinh_series(arb_ptr s, arb_srcptr h, slong hlen, slong n, slong prec);
|
||||
|
@ -584,19 +584,19 @@ void arb_poly_sin_cos_series_basecase(arb_poly_t s, arb_poly_t c,
|
|||
const arb_poly_t h, slong n, slong prec, int times_pi);
|
||||
|
||||
void _arb_poly_sin_cos_series_tangent(arb_ptr s, arb_ptr c,
|
||||
const arb_srcptr h, slong hlen, slong len, slong prec, int times_pi);
|
||||
arb_srcptr h, slong hlen, slong len, slong prec, int times_pi);
|
||||
|
||||
void arb_poly_sin_cos_series_tangent(arb_poly_t s, arb_poly_t c,
|
||||
const arb_poly_t h, slong n, slong prec, int times_pi);
|
||||
|
||||
void _arb_poly_sin_cos_series(arb_ptr s, arb_ptr c,
|
||||
const arb_srcptr h, slong hlen, slong len, slong prec);
|
||||
arb_srcptr h, slong hlen, slong len, slong prec);
|
||||
|
||||
void arb_poly_sin_cos_series(arb_poly_t s, arb_poly_t c,
|
||||
const arb_poly_t h, slong n, slong prec);
|
||||
|
||||
void _arb_poly_sin_cos_pi_series(arb_ptr s, arb_ptr c,
|
||||
const arb_srcptr h, slong hlen, slong len, slong prec);
|
||||
arb_srcptr h, slong hlen, slong len, slong prec);
|
||||
|
||||
void arb_poly_sin_cos_pi_series(arb_poly_t s, arb_poly_t c,
|
||||
const arb_poly_t h, slong n, slong prec);
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
#define TANGENT_CUTOFF 240
|
||||
|
||||
void
|
||||
_arb_poly_sin_cos_pi_series(arb_ptr s, arb_ptr c, const arb_srcptr h, slong hlen, slong n, slong prec)
|
||||
_arb_poly_sin_cos_pi_series(arb_ptr s, arb_ptr c, arb_srcptr h, slong hlen, slong n, slong prec)
|
||||
{
|
||||
hlen = FLINT_MIN(hlen, n);
|
||||
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
#define TANGENT_CUTOFF 240
|
||||
|
||||
void
|
||||
_arb_poly_sin_cos_series(arb_ptr s, arb_ptr c, const arb_srcptr h, slong hlen, slong n, slong prec)
|
||||
_arb_poly_sin_cos_series(arb_ptr s, arb_ptr c, arb_srcptr h, slong hlen, slong n, slong prec)
|
||||
{
|
||||
hlen = FLINT_MIN(hlen, n);
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
|
||||
void
|
||||
_arb_poly_sin_cos_series_tangent(arb_ptr s, arb_ptr c,
|
||||
const arb_srcptr h, slong hlen, slong len, slong prec, int times_pi)
|
||||
arb_srcptr h, slong hlen, slong len, slong prec, int times_pi)
|
||||
{
|
||||
arb_ptr t, u, v;
|
||||
arb_t s0, c0;
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
#include "arb_poly.h"
|
||||
|
||||
void
|
||||
_arb_poly_sinh_cosh_series(arb_ptr s, arb_ptr c, const arb_srcptr h, slong hlen, slong n, slong prec)
|
||||
_arb_poly_sinh_cosh_series(arb_ptr s, arb_ptr c, arb_srcptr h, slong hlen, slong n, slong prec)
|
||||
{
|
||||
hlen = FLINT_MIN(hlen, n);
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
#include "arb_poly.h"
|
||||
|
||||
void
|
||||
_arb_poly_sinh_cosh_series_basecase(arb_ptr s, arb_ptr c, const arb_srcptr h, slong hlen,
|
||||
_arb_poly_sinh_cosh_series_basecase(arb_ptr s, arb_ptr c, arb_srcptr h, slong hlen,
|
||||
slong n, slong prec)
|
||||
{
|
||||
slong j, k, alen = FLINT_MIN(n, hlen);
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
|
||||
void
|
||||
_arb_poly_sinh_cosh_series_exponential(arb_ptr s, arb_ptr c,
|
||||
const arb_srcptr h, slong hlen, slong len, slong prec)
|
||||
arb_srcptr h, slong hlen, slong len, slong prec)
|
||||
{
|
||||
arb_ptr t, u, v;
|
||||
arb_t s0, c0;
|
||||
|
|
Loading…
Add table
Reference in a new issue