arb/dirichlet/ui_parity.c
2016-10-08 20:54:14 +02:00

28 lines
621 B
C

/*
Copyright (C) 2016 Pascal Molin
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/>.
*/
#include "dirichlet.h"
int
dirichlet_parity_ui(const dirichlet_group_t G, ulong a)
{
int par;
par = 0;
if (G->neven && a % 4 == 3)
par++;
if (n_jacobi_unsigned(a, G->rad_q) == -1)
par++;
return par % 2;
}