/* Copyright (C) 2014 Fredrik Johansson This file is part of Arb. Arb is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License (LGPL) as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. See . */ #include "arb.h" void _arb_vec_set_powers(arb_ptr xs, const arb_t x, slong len, slong prec) { slong i; for (i = 0; i < len; i++) { if (i == 0) arb_one(xs + i); else if (i == 1) arb_set_round(xs + i, x, prec); else if (i % 2 == 0) arb_mul(xs + i, xs + i / 2, xs + i / 2, prec); else arb_mul(xs + i, xs + i - 1, x, prec); } }