-
Notifications
You must be signed in to change notification settings - Fork 145
/
Copy pathroot_ui.c
46 lines (41 loc) · 1.05 KB
/
root_ui.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*
Copyright (C) 2015 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 <http://www.gnu.org/licenses/>.
*/
#include "acb.h"
void
acb_root_ui(acb_t res, const acb_t z, ulong n, slong prec)
{
if (n == 0)
{
acb_indeterminate(res);
}
else if (n == 1)
{
acb_set_round(res, z, prec);
}
else if (n == 2)
{
acb_sqrt(res, z, prec);
}
else if (n == 4)
{
acb_sqrt(res, z, prec + 4);
acb_sqrt(res, res, prec);
}
else if (acb_is_real(z) && arb_is_nonnegative(acb_realref(z)))
{
arb_root(acb_realref(res), acb_realref(z), n, prec);
arb_zero(acb_imagref(res));
}
else
{
acb_log(res, z, prec + 4);
acb_div_ui(res, res, n, prec + 4);
acb_exp(res, res, prec);
}
}