#include "acb_poly.h"
#include "gr_poly.h"
void
_acb_poly_tan_series(acb_ptr res, acb_srcptr h, slong hlen, slong len, slong prec)
{
gr_ctx_t ctx;
gr_ctx_init_complex_acb(ctx, prec);
if (_gr_poly_tan_series(res, h, hlen, len, ctx) != GR_SUCCESS)
_acb_vec_indeterminate(res, len);
}
void
acb_poly_tan_series(acb_poly_t g, const acb_poly_t h, slong n, slong prec)
{
if (h->length == 0 || n == 0)
{
acb_poly_zero(g);
return;
}
acb_poly_fit_length(g, n);
_acb_poly_tan_series(g->coeffs, h->coeffs, h->length, n, prec);
_acb_poly_set_length(g, n);
_acb_poly_normalise(g);
}