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
/*
Copyright (C) 2023 Albin Ahlbäck
This file is part of FLINT.
FLINT 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 3 of the License, or
(at your option) any later version. See <https://www.gnu.org/licenses/>.
*/
#ifndef ACB_TYPES_H
#define ACB_TYPES_H
#include "arb_types.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef struct
{
arb_struct real;
arb_struct imag;
}
acb_struct;
typedef acb_struct acb_t[1];
typedef acb_struct * acb_ptr;
typedef const acb_struct * acb_srcptr;
typedef struct
{
acb_ptr entries;
slong r;
slong c;
slong stride;
}
acb_mat_struct;
typedef acb_mat_struct acb_mat_t[1];
typedef struct
{
acb_ptr coeffs;
slong alloc;
slong length;
}
acb_poly_struct;
typedef acb_poly_struct acb_poly_t[1];
#ifdef __cplusplus
}
#endif
#endif /* ACB_TYPES_H */