/* 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 . */ #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; }