2016-04-12 15:07:04 +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 General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
ARB 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 ARB; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
|
|
|
|
=============================================================================*/
|
|
|
|
/******************************************************************************
|
|
|
|
|
|
|
|
Copyright (C) 2016 Pascal Molin
|
|
|
|
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
#include "acb_dirichlet.h"
|
|
|
|
|
2016-07-05 13:16:29 +02:00
|
|
|
/* TODO: factor on modulus */
|
|
|
|
|
2016-06-24 16:03:22 +02:00
|
|
|
static void
|
|
|
|
gauss_sum_non_primitive(acb_t res, const acb_dirichlet_group_t G, const acb_dirichlet_char_t chi, slong prec)
|
|
|
|
{
|
|
|
|
|
|
|
|
slong k, mu = 1;
|
|
|
|
ulong NN0 = G->q / chi->conductor;
|
|
|
|
|
|
|
|
/* G(chi) = mu(N/N0)chi0(N/N0)G(chi0) */
|
|
|
|
|
2016-07-13 15:54:45 +02:00
|
|
|
if (NN0 % 2 == 0)
|
2016-06-24 16:03:22 +02:00
|
|
|
{
|
2016-07-13 15:54:45 +02:00
|
|
|
if (G->q % 4)
|
|
|
|
mu = -1;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
acb_zero(res);
|
|
|
|
return;
|
|
|
|
}
|
2016-06-24 16:03:22 +02:00
|
|
|
}
|
|
|
|
|
2016-07-13 15:54:45 +02:00
|
|
|
for (k = G->neven; k < G->num; k++)
|
2016-06-24 16:03:22 +02:00
|
|
|
{
|
2016-07-06 18:39:29 +02:00
|
|
|
ulong p = G->P[k].p;
|
2016-06-24 16:03:22 +02:00
|
|
|
|
2016-07-06 18:39:29 +02:00
|
|
|
if (G->P[k].e > 1 && NN0 % (p*p) == 0)
|
2016-06-24 16:03:22 +02:00
|
|
|
{
|
|
|
|
acb_zero(res);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (NN0 % p == 0)
|
|
|
|
mu *= -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (chi->x->n == 1)
|
|
|
|
{
|
|
|
|
acb_set_si(res, mu);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
|
|
|
|
acb_dirichlet_group_t G0;
|
|
|
|
acb_dirichlet_char_t chi0;
|
|
|
|
acb_t z;
|
|
|
|
|
2016-07-13 15:54:45 +02:00
|
|
|
acb_dirichlet_subgroup_init(G0, G, chi->conductor);
|
2016-06-24 16:03:22 +02:00
|
|
|
acb_dirichlet_char_init(chi0, G);
|
|
|
|
acb_dirichlet_char_primitive(chi0, G0, G, chi);
|
|
|
|
|
|
|
|
acb_init(z);
|
|
|
|
acb_dirichlet_gauss_sum(z, G0, chi0, prec);
|
|
|
|
|
|
|
|
acb_dirichlet_chi(res, G0, chi0, NN0, prec);
|
|
|
|
|
|
|
|
acb_mul(res, res, z, prec);
|
|
|
|
acb_mul_si(res, res, mu, prec);
|
|
|
|
|
|
|
|
acb_dirichlet_group_clear(G0);
|
|
|
|
acb_dirichlet_char_clear(chi0);
|
|
|
|
acb_clear(z);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-12 15:07:04 +02:00
|
|
|
void
|
|
|
|
acb_dirichlet_gauss_sum(acb_t res, const acb_dirichlet_group_t G, const acb_dirichlet_char_t chi, slong prec)
|
|
|
|
{
|
2016-07-13 15:54:45 +02:00
|
|
|
/* no need, factor also does it... */
|
2016-06-24 16:03:22 +02:00
|
|
|
if (chi->conductor != G->q)
|
|
|
|
{
|
|
|
|
gauss_sum_non_primitive(res, G, chi, prec);
|
|
|
|
}
|
2016-07-14 18:55:44 +02:00
|
|
|
else if (chi->order.n <= 2)
|
2016-04-12 15:07:04 +02:00
|
|
|
{
|
|
|
|
if (chi->parity)
|
|
|
|
{
|
|
|
|
arb_sqrt_ui(acb_imagref(res), G->q, prec);
|
|
|
|
arb_zero(acb_realref(res));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
arb_sqrt_ui(acb_realref(res), G->q, prec);
|
|
|
|
arb_zero(acb_imagref(res));
|
|
|
|
}
|
|
|
|
}
|
2016-07-13 15:54:45 +02:00
|
|
|
else if (G->num > 1 && G->num > G->neven)
|
|
|
|
{
|
|
|
|
acb_dirichlet_gauss_sum_factor(res, G, chi, prec);
|
|
|
|
}
|
2016-04-12 15:07:04 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if (acb_dirichlet_theta_length_d(G->q, 1, prec) > G->q)
|
|
|
|
acb_dirichlet_gauss_sum_naive(res, G, chi, prec);
|
|
|
|
else
|
|
|
|
acb_dirichlet_gauss_sum_theta(res, G, chi, prec);
|
|
|
|
}
|
|
|
|
}
|