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
|
/*=============================================================================
This file is part of FLINT.
FLINT is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
FLINT is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with FLINT; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
=============================================================================*/
/******************************************************************************
Copyright (C) 2012 Andres Goens
Copyright (C) 2012 Sebastian Pancratz
Copyright (C) 2013 Mike Hansen
******************************************************************************/
#include <stdio.h>
#include <string.h>
#include "fq_nmod.h"
int _fq_nmod_ctx_init_conway(fq_nmod_ctx_t ctx, const fmpz_t p, slong d, const char *var)
{
char *buf;
FILE *file;
if (fmpz_cmp_ui(p, 109987) > 0)
{
return 0;
}
buf = flint_malloc(832);
file = fopen(FLINT_CPIMPORT, "r");
if (!file)
{
file = fopen("../qadic/CPimport.txt", "r");
if (!file)
{
flint_printf("Exception (fq_nmod_ctx_init_conway). File loading.\n");
abort();
}
}
while (fgets(buf, 832, file))
{
char *tmp = buf;
/* Different prime? */
if (fmpz_cmp_ui(p, atoi(tmp)))
continue;
while (*tmp++ != ' ') ;
/* Same degree? */
if (d == atoi(tmp))
{
nmod_poly_t mod;
slong i;
char *ptr;
nmod_poly_init(mod, fmpz_get_ui(p));
/* Copy the polynomial */
ptr = tmp;
for (i = 0; i < d; i++)
{
int coeff;
while (*ptr++ != ' ') ;
coeff = atoi(ptr);
nmod_poly_set_coeff_ui(mod, i, coeff);
}
nmod_poly_set_coeff_ui(mod, d, 1);
fq_nmod_ctx_init_modulus(ctx, mod, var);
nmod_poly_clear(mod);
fclose(file);
flint_free(buf);
return 1;
}
}
fclose(file);
flint_free(buf);
return 0;
}
void fq_nmod_ctx_init_conway(fq_nmod_ctx_t ctx, const fmpz_t p, slong d, const char *var)
{
int result;
if (fmpz_cmp_ui(p, 109987) > 0)
{
flint_printf("Exception (fq_nmod_ctx_init_conway). Conway polynomials \n");
flint_printf("are only available for primes up to 109987.\n");
abort();
}
result = _fq_nmod_ctx_init_conway(ctx, p, d, var);
if (!result) {
flint_printf("Exception (fq_nmod_ctx_init_conway). The polynomial for \n(p,d) = (");
fmpz_print(p), flint_printf(",%wd) is not present in the database.\n", d);
abort();
}
}
|