-
Notifications
You must be signed in to change notification settings - Fork 138
/
acb_elliptic.h
76 lines (45 loc) · 2.75 KB
/
acb_elliptic.h
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/*
Copyright (C) 2017 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/>.
*/
#ifndef ACB_ELLIPTIC_H
#define ACB_ELLIPTIC_H
#include <stdio.h>
#include "acb.h"
#include "acb_poly.h"
#ifdef __cplusplus
extern "C" {
#endif
void acb_elliptic_k(acb_t k, const acb_t m, slong prec);
void acb_elliptic_k_jet(acb_ptr w, const acb_t m, slong len, slong prec);
void _acb_elliptic_k_series(acb_ptr res, acb_srcptr m, slong zlen, slong len, slong prec);
void acb_elliptic_k_series(acb_poly_t res, const acb_poly_t m, slong len, slong prec);
void acb_elliptic_e(acb_t res, const acb_t m, slong prec);
void acb_elliptic_rf(acb_t res, const acb_t x, const acb_t y, const acb_t z, int flags, slong prec);
void acb_elliptic_rj(acb_t res, const acb_t x, const acb_t y, const acb_t z, const acb_t p, int flags, slong prec);
void acb_elliptic_rj_carlson(acb_t res, const acb_t x, const acb_t y, const acb_t z, const acb_t p, int flags, slong prec);
void acb_elliptic_rj_integration(acb_t res, const acb_t x, const acb_t y, const acb_t z, const acb_t p, int flags, slong prec);
void acb_elliptic_rg(acb_t res, const acb_t x, const acb_t y, const acb_t z, int flags, slong prec);
void acb_elliptic_rc1(acb_t res, const acb_t x, slong prec);
void acb_elliptic_f(acb_t res, const acb_t phi, const acb_t m, int times_pi, slong prec);
void acb_elliptic_e_inc(acb_t res, const acb_t phi, const acb_t m, int times_pi, slong prec);
void acb_elliptic_pi(acb_t r, const acb_t n, const acb_t m, slong prec);
void acb_elliptic_pi_inc(acb_t res, const acb_t n, const acb_t phi, const acb_t m, int times_pi, slong prec);
void acb_elliptic_p(acb_t r, const acb_t z, const acb_t tau, slong prec);
void acb_elliptic_p_prime(acb_t r, const acb_t z, const acb_t tau, slong prec);
void acb_elliptic_p_jet(acb_ptr r, const acb_t z, const acb_t tau, slong len, slong prec);
void _acb_elliptic_p_series(acb_ptr res, acb_srcptr z, slong zlen, const acb_t tau, slong len, slong prec);
void acb_elliptic_p_series(acb_poly_t res, const acb_poly_t z, const acb_t tau, slong len, slong prec);
void acb_elliptic_zeta(acb_t res, const acb_t z, const acb_t tau, slong prec);
void acb_elliptic_sigma(acb_t res, const acb_t z, const acb_t tau, slong prec);
void acb_elliptic_roots(acb_t e1, acb_t e2, acb_t e3, const acb_t tau, slong prec);
void acb_elliptic_invariants(acb_t g2, acb_t g3, const acb_t tau, slong prec);
void acb_elliptic_inv_p(acb_t res, const acb_t z, const acb_t tau, slong prec);
#ifdef __cplusplus
}
#endif
#endif