2016-09-06 15:32:23 +02:00
|
|
|
/*
|
2016-06-15 12:23:24 +02:00
|
|
|
Copyright (C) 2016 Pascal Molin
|
|
|
|
|
2016-09-06 15:32:23 +02:00
|
|
|
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/>.
|
|
|
|
*/
|
2016-06-15 12:23:24 +02:00
|
|
|
|
2016-10-06 14:19:39 +02:00
|
|
|
#include "dirichlet.h"
|
2016-06-15 12:23:24 +02:00
|
|
|
|
|
|
|
ulong
|
2016-10-08 17:22:19 +02:00
|
|
|
dirichlet_conductor_ui(const dirichlet_group_t G, ulong a)
|
2016-06-15 12:23:24 +02:00
|
|
|
{
|
|
|
|
slong k;
|
|
|
|
ulong ap, cond;
|
|
|
|
|
|
|
|
cond = 1;
|
|
|
|
|
|
|
|
for (k = (G->neven == 2); k < G->num; k++)
|
|
|
|
{
|
2016-07-06 18:39:29 +02:00
|
|
|
ulong p;
|
|
|
|
nmod_t pe;
|
|
|
|
p = G->P[k].p;
|
|
|
|
pe = G->P[k].pe;
|
2016-06-15 12:23:24 +02:00
|
|
|
ap = a % pe.n;
|
|
|
|
if (ap == 1)
|
|
|
|
continue;
|
|
|
|
if (p == 2)
|
|
|
|
{
|
|
|
|
cond = 4;
|
|
|
|
if (a % 4 == 3)
|
|
|
|
ap = pe.n - ap;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cond *= p;
|
|
|
|
ap = nmod_pow_ui(ap, p - 1, pe);
|
|
|
|
}
|
|
|
|
|
|
|
|
while (ap != 1)
|
|
|
|
{
|
|
|
|
cond *= p;
|
|
|
|
ap = nmod_pow_ui(ap, p, pe);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return cond;
|
|
|
|
}
|