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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
#![allow(non_snake_case)]
#![allow(non_camel_case_types)]
use crate::deps::*;
use crate::flint::*;
use crate::fmpz::fmpz;
use crate::fmpq::fmpq;
use crate::fmpz_poly::fmpz_poly_struct;
use crate::fmpq_poly::fmpq_poly_struct;
use crate::padic::{padic_struct, padic_ctx_struct};
use libc::{c_char, c_int, FILE};
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct padic_poly_struct {
pub coeffs: *mut fmpz,
pub alloc: mp_limb_signed_t,
pub length: mp_limb_signed_t,
pub val: mp_limb_signed_t,
pub N: mp_limb_signed_t,
}
pub type padic_poly_t = [padic_poly_struct; 1usize];
extern "C" {
pub fn _fmpz_vec_ord_p(
vec: *const fmpz,
len: mp_limb_signed_t,
p: *mut fmpz,
) -> mp_limb_signed_t;
pub fn padic_poly_init(poly: *mut padic_poly_struct);
pub fn padic_poly_init2(
poly: *mut padic_poly_struct,
alloc: mp_limb_signed_t,
prec: mp_limb_signed_t,
);
pub fn padic_poly_clear(poly: *mut padic_poly_struct);
pub fn padic_poly_realloc(f: *mut padic_poly_struct, alloc: mp_limb_signed_t, p: *mut fmpz);
pub fn padic_poly_fit_length(f: *mut padic_poly_struct, len: mp_limb_signed_t);
pub fn _padic_poly_set_length(poly: *mut padic_poly_struct, len: mp_limb_signed_t);
pub fn _padic_poly_normalise(f: *mut padic_poly_struct);
pub fn _padic_poly_canonicalise(
poly: *mut fmpz,
v: *mut mp_limb_signed_t,
len: mp_limb_signed_t,
p: *mut fmpz,
);
pub fn padic_poly_canonicalise(poly: *mut padic_poly_struct, p: *mut fmpz);
pub fn padic_poly_reduce(f: *mut padic_poly_struct, ctx: *mut padic_ctx_struct);
pub fn padic_poly_truncate(poly: *mut padic_poly_struct, n: mp_limb_signed_t, p: *mut fmpz);
pub fn padic_poly_degree(poly: *mut padic_poly_struct) -> mp_limb_signed_t;
pub fn padic_poly_length(poly: *mut padic_poly_struct) -> mp_limb_signed_t;
pub fn padic_poly_val(poly: *mut padic_poly_struct) -> mp_limb_signed_t;
pub fn padic_poly_randtest(
f: *mut padic_poly_struct,
state: *mut flint_rand_s,
len: mp_limb_signed_t,
ctx: *mut padic_ctx_struct,
);
pub fn padic_poly_randtest_not_zero(
f: *mut padic_poly_struct,
state: *mut flint_rand_s,
len: mp_limb_signed_t,
ctx: *mut padic_ctx_struct,
);
pub fn padic_poly_randtest_val(
f: *mut padic_poly_struct,
state: *mut flint_rand_s,
val: mp_limb_signed_t,
len: mp_limb_signed_t,
ctx: *mut padic_ctx_struct,
);
pub fn padic_poly_set(
f: *mut padic_poly_struct,
g: *mut padic_poly_struct,
ctx: *mut padic_ctx_struct,
);
pub fn padic_poly_set_padic(
poly: *mut padic_poly_struct,
x: *mut padic_struct,
ctx: *mut padic_ctx_struct,
);
pub fn padic_poly_set_si(
poly: *mut padic_poly_struct,
x: mp_limb_signed_t,
ctx: *mut padic_ctx_struct,
);
pub fn padic_poly_set_ui(
poly: *mut padic_poly_struct,
x: mp_limb_t,
ctx: *mut padic_ctx_struct,
);
pub fn padic_poly_set_fmpz(
poly: *mut padic_poly_struct,
x: *mut fmpz,
ctx: *mut padic_ctx_struct,
);
pub fn padic_poly_set_fmpq(
poly: *mut padic_poly_struct,
x: *mut fmpq,
ctx: *mut padic_ctx_struct,
);
pub fn padic_poly_set_fmpz_poly(
rop: *mut padic_poly_struct,
op: *mut fmpz_poly_struct,
ctx: *mut padic_ctx_struct,
);
pub fn padic_poly_set_fmpq_poly(
rop: *mut padic_poly_struct,
op: *mut fmpq_poly_struct,
ctx: *mut padic_ctx_struct,
);
pub fn padic_poly_get_fmpz_poly(
rop: *mut fmpz_poly_struct,
op: *mut padic_poly_struct,
ctx: *mut padic_ctx_struct,
) -> c_int;
pub fn padic_poly_get_fmpq_poly(
rop: *mut fmpq_poly_struct,
op: *mut padic_poly_struct,
ctx: *mut padic_ctx_struct,
);
pub fn padic_poly_zero(poly: *mut padic_poly_struct);
pub fn padic_poly_one(poly: *mut padic_poly_struct);
pub fn padic_poly_swap(poly1: *mut padic_poly_struct, poly2: *mut padic_poly_struct);
pub fn padic_poly_get_coeff_padic(
c: *mut padic_struct,
poly: *mut padic_poly_struct,
n: mp_limb_signed_t,
ctx: *mut padic_ctx_struct,
);
pub fn padic_poly_set_coeff_padic(
f: *mut padic_poly_struct,
n: mp_limb_signed_t,
c: *mut padic_struct,
ctx: *mut padic_ctx_struct,
);
pub fn padic_poly_equal(
f: *mut padic_poly_struct,
g: *mut padic_poly_struct,
) -> c_int;
pub fn padic_poly_is_zero(poly: *mut padic_poly_struct) -> c_int;
pub fn padic_poly_is_one(poly: *mut padic_poly_struct) -> c_int;
pub fn _padic_poly_add(
rop: *mut fmpz,
rval: *mut mp_limb_signed_t,
N: mp_limb_signed_t,
op1: *const fmpz,
val1: mp_limb_signed_t,
len1: mp_limb_signed_t,
N1: mp_limb_signed_t,
op2: *const fmpz,
val2: mp_limb_signed_t,
len2: mp_limb_signed_t,
N2: mp_limb_signed_t,
ctx: *mut padic_ctx_struct,
);
pub fn padic_poly_add(
f: *mut padic_poly_struct,
g: *mut padic_poly_struct,
h: *mut padic_poly_struct,
ctx: *mut padic_ctx_struct,
);
pub fn _padic_poly_sub(
rop: *mut fmpz,
rval: *mut mp_limb_signed_t,
N: mp_limb_signed_t,
op1: *const fmpz,
val1: mp_limb_signed_t,
len1: mp_limb_signed_t,
N1: mp_limb_signed_t,
op2: *const fmpz,
val2: mp_limb_signed_t,
len2: mp_limb_signed_t,
N2: mp_limb_signed_t,
ctx: *mut padic_ctx_struct,
);
pub fn padic_poly_sub(
f: *mut padic_poly_struct,
g: *mut padic_poly_struct,
h: *mut padic_poly_struct,
ctx: *mut padic_ctx_struct,
);
pub fn padic_poly_neg(
f: *mut padic_poly_struct,
g: *mut padic_poly_struct,
ctx: *mut padic_ctx_struct,
);
pub fn _padic_poly_scalar_mul_padic(
rop: *mut fmpz,
rval: *mut mp_limb_signed_t,
N: mp_limb_signed_t,
op: *const fmpz,
val: mp_limb_signed_t,
len: mp_limb_signed_t,
c: *mut padic_struct,
ctx: *mut padic_ctx_struct,
);
pub fn padic_poly_scalar_mul_padic(
rop: *mut padic_poly_struct,
op: *mut padic_poly_struct,
c: *mut padic_struct,
ctx: *mut padic_ctx_struct,
);
pub fn _padic_poly_mul(
rop: *mut fmpz,
rval: *mut mp_limb_signed_t,
N: mp_limb_signed_t,
op1: *const fmpz,
val1: mp_limb_signed_t,
len1: mp_limb_signed_t,
op2: *const fmpz,
val2: mp_limb_signed_t,
len2: mp_limb_signed_t,
ctx: *mut padic_ctx_struct,
);
pub fn padic_poly_mul(
f: *mut padic_poly_struct,
g: *mut padic_poly_struct,
h: *mut padic_poly_struct,
ctx: *mut padic_ctx_struct,
);
pub fn _padic_poly_pow(
rop: *mut fmpz,
rval: *mut mp_limb_signed_t,
N: mp_limb_signed_t,
op: *const fmpz,
val: mp_limb_signed_t,
len: mp_limb_signed_t,
e: mp_limb_t,
ctx: *mut padic_ctx_struct,
);
pub fn padic_poly_pow(
rop: *mut padic_poly_struct,
op: *mut padic_poly_struct,
e: mp_limb_t,
ctx: *mut padic_ctx_struct,
);
pub fn padic_poly_inv_series(
Qinv: *mut padic_poly_struct,
Q: *mut padic_poly_struct,
n: mp_limb_signed_t,
ctx: *mut padic_ctx_struct,
);
pub fn _padic_poly_derivative(
rop: *mut fmpz,
rval: *mut mp_limb_signed_t,
N: mp_limb_signed_t,
op: *const fmpz,
val: mp_limb_signed_t,
len: mp_limb_signed_t,
ctx: *mut padic_ctx_struct,
);
pub fn padic_poly_derivative(
rop: *mut padic_poly_struct,
op: *mut padic_poly_struct,
ctx: *mut padic_ctx_struct,
);
pub fn padic_poly_shift_left(
rop: *mut padic_poly_struct,
op: *mut padic_poly_struct,
n: mp_limb_signed_t,
ctx: *mut padic_ctx_struct,
);
pub fn padic_poly_shift_right(
rop: *mut padic_poly_struct,
op: *mut padic_poly_struct,
n: mp_limb_signed_t,
ctx: *mut padic_ctx_struct,
);
pub fn _padic_poly_evaluate_padic(
u: *mut fmpz,
v: *mut mp_limb_signed_t,
N: mp_limb_signed_t,
poly: *const fmpz,
val: mp_limb_signed_t,
len: mp_limb_signed_t,
a: *mut fmpz,
b: mp_limb_signed_t,
ctx: *mut padic_ctx_struct,
);
pub fn padic_poly_evaluate_padic(
y: *mut padic_struct,
poly: *mut padic_poly_struct,
x: *mut padic_struct,
ctx: *mut padic_ctx_struct,
);
pub fn _padic_poly_compose(
rop: *mut fmpz,
rval: *mut mp_limb_signed_t,
N: mp_limb_signed_t,
op1: *const fmpz,
val1: mp_limb_signed_t,
len1: mp_limb_signed_t,
op2: *const fmpz,
val2: mp_limb_signed_t,
len2: mp_limb_signed_t,
ctx: *mut padic_ctx_struct,
);
pub fn padic_poly_compose(
rop: *mut padic_poly_struct,
op1: *mut padic_poly_struct,
op2: *mut padic_poly_struct,
ctx: *mut padic_ctx_struct,
);
pub fn _padic_poly_compose_pow(
rop: *mut fmpz,
rval: *mut mp_limb_signed_t,
N: mp_limb_signed_t,
op: *const fmpz,
val: mp_limb_signed_t,
len: mp_limb_signed_t,
k: mp_limb_signed_t,
ctx: *mut padic_ctx_struct,
);
pub fn padic_poly_compose_pow(
rop: *mut padic_poly_struct,
op: *mut padic_poly_struct,
k: mp_limb_signed_t,
ctx: *mut padic_ctx_struct,
);
pub fn padic_poly_debug(poly: *mut padic_poly_struct) -> c_int;
pub fn _padic_poly_fprint(
file: *mut FILE,
poly: *const fmpz,
val: mp_limb_signed_t,
len: mp_limb_signed_t,
ctx: *mut padic_ctx_struct,
) -> c_int;
pub fn padic_poly_fprint(
file: *mut FILE,
poly: *mut padic_poly_struct,
ctx: *mut padic_ctx_struct,
) -> c_int;
pub fn _padic_poly_print(
poly: *const fmpz,
val: mp_limb_signed_t,
len: mp_limb_signed_t,
ctx: *mut padic_ctx_struct,
) -> c_int;
pub fn padic_poly_print(
poly: *mut padic_poly_struct,
ctx: *mut padic_ctx_struct,
) -> c_int;
pub fn _padic_poly_fprint_pretty(
file: *mut FILE,
poly: *const fmpz,
val: mp_limb_signed_t,
len: mp_limb_signed_t,
var: *const c_char,
ctx: *mut padic_ctx_struct,
) -> c_int;
pub fn padic_poly_fprint_pretty(
file: *mut FILE,
poly: *mut padic_poly_struct,
var: *const c_char,
ctx: *mut padic_ctx_struct,
) -> c_int;
pub fn _padic_poly_print_pretty(
file: *mut FILE,
poly: *const fmpz,
val: mp_limb_signed_t,
len: mp_limb_signed_t,
var: *const c_char,
ctx: *mut padic_ctx_struct,
) -> c_int;
pub fn padic_poly_print_pretty(
poly: *mut padic_poly_struct,
var: *const c_char,
ctx: *mut padic_ctx_struct,
) -> c_int;
pub fn _padic_poly_is_canonical(
op: *const fmpz,
val: mp_limb_signed_t,
len: mp_limb_signed_t,
ctx: *mut padic_ctx_struct,
) -> c_int;
pub fn padic_poly_is_canonical(
op: *mut padic_poly_struct,
ctx: *mut padic_ctx_struct,
) -> c_int;
pub fn _padic_poly_is_reduced(
op: *const fmpz,
val: mp_limb_signed_t,
len: mp_limb_signed_t,
N: mp_limb_signed_t,
ctx: *mut padic_ctx_struct,
) -> c_int;
pub fn padic_poly_is_reduced(
op: *mut padic_poly_struct,
ctx: *mut padic_ctx_struct,
) -> c_int;
}