-
Notifications
You must be signed in to change notification settings - Fork 245
/
factor.c
477 lines (357 loc) · 13.8 KB
/
factor.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
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
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
/*
Copyright (C) 2006, 2011, 2016, 2020 William Hart
Copyright (C) 2015 Nitin Kumar
Copyright (C) 2020 Dan Schultz
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 2.1 of the License, or
(at your option) any later version. See <https://www.gnu.org/licenses/>.
*/
#define _STDC_FORMAT_MACROS
#ifdef __GNUC__
# define strcpy __builtin_strcpy
#else
# include <math.h>
#endif
/* try to get fdopen, mkstemp declared */
#if defined __STRICT_ANSI__
#undef __STRICT_ANSI__
#endif
#include <stdio.h>
#include <stdlib.h>
#include "thread_support.h"
#include "fmpz.h"
#include "fmpz_factor.h"
#include "fmpz_vec.h"
#include "qsieve.h"
int compare_facs(const void * a, const void * b)
{
fmpz * x = (fmpz *) a;
fmpz * y = (fmpz *) b;
return fmpz_cmp(x, y);
}
/*
Finds at least one nontrivial factor of n using the self initialising
multiple polynomial quadratic sieve with single large prime variation.
Assumes n is not prime and not a perfect power.
*/
void qsieve_factor(fmpz_factor_t factors, const fmpz_t n)
{
qs_t qs_inf;
mp_limb_t small_factor, delta;
ulong expt = 0;
unsigned char * sieve;
slong ncols, nrows, i, j = 0, count, num_primes;
uint64_t * nullrows = NULL;
uint64_t mask;
flint_rand_t state;
fmpz_t temp, temp2, X, Y;
slong num_facs;
fmpz * facs;
#if (defined(__WIN32) && !defined(__CYGWIN__) && !defined(__MINGW32__) && !defined(__MINGW64__)) || defined(_MSC_VER)
const char * tmpnam_ret;
#else
int fd;
#endif
if (fmpz_sgn(n) < 0)
{
fmpz_t n2;
fmpz_init(n2);
fmpz_abs(n2, n);
factors->sign *= -1;
qsieve_factor(factors, n2);
fmpz_clear(n2);
return;
}
/**************************************************************************
INITIALISATION:
Initialise the qs_t structure.
**************************************************************************/
#if QS_DEBUG
flint_printf("\nstart\n");
#endif
qsieve_init(qs_inf, n);
#if QS_DEBUG
flint_printf("factoring ");
fmpz_print(qs_inf->n);
flint_printf(" of %wu bits\n", qs_inf->bits);
#endif
/**************************************************************************
KNUTH SCHROEPPEL:
Try to compute a multiplier k such that there are a lot of small primes
which are quadratic residues modulo kn. If a small factor of n is found
during this process it is returned.
**************************************************************************/
#if QS_DEBUG
flint_printf("\nKnuth_Schroeppel\n");
#endif
small_factor = qsieve_knuth_schroeppel(qs_inf);
if (small_factor)
{
#if QS_DEBUG
flint_printf("found small factor %wu in Knuth-Schroeppel\n", small_factor);
#endif
fmpz_init_set_ui(temp, small_factor);
expt += fmpz_remove(temp, qs_inf->n, temp);
_fmpz_factor_append_ui(factors, small_factor, expt);
qsieve_clear(qs_inf);
fmpz_factor_no_trial(factors, temp);
fmpz_clear(temp);
return;
}
/* compute kn */
fmpz_mul_ui(qs_inf->kn, qs_inf->n, qs_inf->k);
/* refine qs_inf->bits */
qs_inf->bits = fmpz_bits(qs_inf->kn);
#if QS_DEBUG
flint_printf("kn bits = %wd\n", qs_inf->bits);
#endif
/**************************************************************************
COMPUTE FACTOR BASE:
**************************************************************************/
#if QS_DEBUG
flint_printf("\nCompute factor-base\n");
#endif
/* compute factor base primes and associated data */
small_factor = qsieve_primes_init(qs_inf);
if (small_factor)
{
#if QS_DEBUG
flint_printf("found small factor %wu while generating factor base\n", small_factor);
#endif
fmpz_init_set_ui(temp, small_factor);
expt += fmpz_remove(temp, qs_inf->n, temp);
_fmpz_factor_append_ui(factors, small_factor, expt);
qsieve_clear(qs_inf);
fmpz_factor_no_trial(factors, temp);
fmpz_clear(temp);
return;
}
fmpz_init(temp);
fmpz_init(temp2);
fmpz_init(X);
fmpz_init(Y);
/**************************************************************************
INITIALISE RELATION/LINEAR ALGEBRA DATA:
Create space for all the relations and matrix information
**************************************************************************/
#if QS_DEBUG
flint_printf("\nInitializing Relations and Linear Algebra\n");
#endif
qsieve_linalg_init(qs_inf);
/**************************************************************************
POLYNOMIAL INITIALIZATION AND SIEVING:
Sieve for relations
**************************************************************************/
#if QS_DEBUG
flint_printf("\nPolynomial Initialisation and Sieving\n");
#endif
qs_inf->num_handles = flint_request_threads(&qs_inf->handles, flint_get_num_threads());
/* ensure cache lines don't overlap if num_handles > 0 */
sieve = flint_malloc((qs_inf->sieve_size + sizeof(ulong)
+ (qs_inf->num_handles > 0 ? 64 : 0))*(qs_inf->num_handles + 1));
#if FLINT_USES_PTHREAD
pthread_mutex_init(&qs_inf->mutex, NULL);
#endif
#if (defined(__WIN32) && !defined(__CYGWIN__) && !defined(__MINGW32__) && !defined(__MINGW64__)) || defined(_MSC_VER)
tmpnam_ret = tmpnam(NULL);
if (tmpnam_ret == NULL)
flint_throw(FLINT_ERROR, "tmpnam failed\n");
strcpy(qs_inf->fname, tmpnam_ret);
qs_inf->siqs = fopen(qs_inf->fname, "w");
if (qs_inf->siqs == NULL)
flint_throw(FLINT_ERROR, "fopen failed\n");
#else
strcpy(qs_inf->fname, FLINT_TMPDIR "/siqsXXXXXX");
fd = mkstemp(qs_inf->fname);
if (fd == -1)
flint_throw(FLINT_ERROR, "mkstemp failed\n");
qs_inf->siqs = (FLINT_FILE *) fdopen(fd, "w");
if (qs_inf->siqs == NULL)
flint_throw(FLINT_ERROR, "fdopen failed\n");
#endif
for (j = qs_inf->small_primes; j < qs_inf->num_primes; j++)
{
if (qs_inf->factor_base[j].p > BLOCK_SIZE)
break;
}
qs_inf->second_prime = j;
#if QS_DEBUG
flint_printf("second prime index = %wd\n", qs_inf->second_prime);
#endif
while (1)
{
if (qs_inf->s) /* we have already tried factoring, so restart */
qsieve_reinit_A(qs_inf);
else
{
if (!qsieve_init_A(qs_inf))
goto more_primes; /* initialisation failed, increase FB */
}
do
{
qsieve_collect_relations(qs_inf, sieve);
qs_inf->num_cycles = qs_inf->edges + qs_inf->components - qs_inf->vertices;
#if QS_DEBUG
flint_printf("full relations = %wd, num cycles = %wd, ks_primes = %wd, "
"extra rels = %wd, poly_count = %wd, num_primes = %wd\n", qs_inf->full_relation,
qs_inf->num_cycles, qs_inf->ks_primes,
qs_inf->extra_rels, qs_inf->poly_count, qs_inf->num_primes);
#endif
if (qs_inf->full_relation + qs_inf->num_cycles >=
((slong) (1.10*qs_inf->num_primes) + qs_inf->ks_primes + qs_inf->extra_rels))
{
int ok;
if (fclose((FILE *) qs_inf->siqs))
flint_throw(FLINT_ERROR, "fclose fail\n");
qs_inf->siqs = NULL;
ok = qsieve_process_relation(qs_inf);
if (ok == -1)
{
small_factor = qs_inf->small_factor;
#if QS_DEBUG
flint_printf("found small factor %wu while incrementing factor base\n, small_factor");
#endif
goto found_small_factor;
}
if (ok)
{
/**************************************************************************
REDUCE MATRIX:
Perform some light filtering on the matrix
**************************************************************************/
num_primes = qs_inf->num_primes;
qs_inf->num_primes += qs_inf->ks_primes;
ncols = qs_inf->num_primes + qs_inf->extra_rels;
nrows = qs_inf->num_primes;
reduce_matrix(qs_inf, &nrows, &ncols, qs_inf->matrix);
/**************************************************************************
BLOCK LANCZOS:
Find extra_rels nullspace vectors (if they exist)
**************************************************************************/
#if QS_DEBUG
flint_printf("\nBlock Lanczos\n");
#endif
flint_randinit(state); /* initialise the random generator */
do /* repeat block lanczos until it succeeds */
{
nullrows = block_lanczos(state, nrows, 0, ncols, qs_inf->matrix);
} while (nullrows == NULL);
for (i = 0, mask = 0; i < ncols; i++) /* create mask of nullspace vectors */
mask |= nullrows[i];
for (i = count = 0; i < 64; i++) /* count nullspace vectors found */
{
if (mask & ((uint64_t)(1) << i))
count++;
}
flint_randclear(state); /* clean up random state */
/**************************************************************************
SQUARE ROOT:
Compute the square root and take the GCD of X-Y with N
**************************************************************************/
#if QS_DEBUG
flint_printf("\nSquare Root\n");
flint_printf("Found %ld kernel vectors\n", count);
#endif
facs = _fmpz_vec_init(100);
num_facs = 0;
for (i = 0; i < 64; i++)
{
if (mask & ((uint64_t)(1) << i))
{
qsieve_square_root(X, Y, qs_inf, nullrows, ncols, i, qs_inf->kn);
fmpz_sub(X, X, Y);
fmpz_gcd(X, X, qs_inf->n);
if (fmpz_cmp(X, qs_inf->n) != 0 && fmpz_cmp_ui(X, 1) != 0) /* have a factor */
fmpz_set(facs + num_facs++, X);
}
}
flint_free(nullrows);
if (num_facs > 0)
{
_fmpz_factor_append(factors, qs_inf->n, 1);
qsort((void *) facs, num_facs, sizeof(fmpz), compare_facs);
for (i = 0; i < num_facs; i++)
{
fmpz_gcd(temp, factors->p + factors->num - 1, facs + i);
if (!fmpz_is_one(temp))
{
factors->exp[factors->num - 1] = fmpz_remove(temp2, factors->p + factors->num - 1, temp);
fmpz_set(factors->p + factors->num - 1, temp);
if (fmpz_is_one(temp2))
break;
else
_fmpz_factor_append(factors, temp2, 1);
}
}
_fmpz_vec_clear(facs, 100);
goto cleanup;
}
_fmpz_vec_clear(facs, 100);
qs_inf->siqs = (FLINT_FILE *) fopen(qs_inf->fname, "w");
if (qs_inf->siqs == NULL)
flint_throw(FLINT_ERROR, "fopen fail\n");
qs_inf->num_primes = num_primes; /* linear algebra adjusts this */
goto more_primes; /* factoring failed, may need more primes */
}
}
} while (qsieve_next_A(qs_inf));
more_primes: /* ran out of A's in init/sieving of linalg failed, increase FB */
#if QS_DEBUG
printf("Increasing factor base.\n");
#endif
delta = qs_inf->num_primes / 10;
delta = FLINT_MAX(delta, 100); /* add at least 100 more primes */
#if QS_DEBUG
flint_printf("\nfactor base increment\n");
#endif
qsieve_poly_clear(qs_inf);
small_factor = qsieve_primes_increment(qs_inf, delta);
for (j = qs_inf->small_primes; j < qs_inf->num_primes; j++)
{
if (qs_inf->factor_base[j].p > BLOCK_SIZE)
break;
}
qs_inf->second_prime = j;
qs_inf->s = 0; /* indicate polynomials need setting up again */
#if QS_DEBUG
printf("Now %ld primes\n", qs_inf->num_primes);
#endif
if (small_factor)
{
#if QS_DEBUG
flint_printf("found small factor %wu while incrementing factor base\n, small_factor");
#endif
found_small_factor:
fmpz_set_ui(temp, small_factor);
expt += fmpz_remove(temp, qs_inf->n, temp);
_fmpz_factor_append_ui(factors, small_factor, expt);
fmpz_factor_no_trial(factors, temp);
goto cleanup;
}
qsieve_linalg_realloc(qs_inf);
}
/**************************************************************************
CLEANUP:
Clean up allocated memory
**************************************************************************/
cleanup:
#if QS_DEBUG
flint_printf("\nCleanup\n");
#endif
#if FLINT_USES_PTHREAD
pthread_mutex_destroy(&qs_inf->mutex);
#endif
flint_give_back_threads(qs_inf->handles, qs_inf->num_handles);
flint_free(sieve);
if (remove(qs_inf->fname))
flint_throw(FLINT_ERROR, "remove fail\n");
qsieve_clear(qs_inf);
qsieve_linalg_clear(qs_inf);
qsieve_poly_clear(qs_inf);
fmpz_clear(X);
fmpz_clear(Y);
fmpz_clear(temp);
fmpz_clear(temp2);
}