#include "test_helpers.h"
#include "fmpz_mat.h"
#include "acb_theta.h"
TEST_FUNCTION_START(acb_theta_g2_character, state)
{
slong iter;
for (iter = 0; iter < 200 * flint_test_multiplier(); iter++)
{
fmpz_mat_t mat;
slong bits = n_randint(state, 10);
ulong * chars;
slong * es;
slong ab, eps, test;
fmpz_mat_init(mat, 4, 4);
sp2gz_randtest(mat, state, bits);
chars = flint_malloc(16 * sizeof(ulong));
es = flint_malloc(16 * sizeof(slong));
eps = acb_theta_g2_character(mat);
test = 10 * acb_siegel_kappa2(mat);
acb_theta_char_table(chars, es, mat, 0, 1);
for (ab = 0; ab < 16; ab++)
{
if (acb_theta_char_is_even(ab, 2))
{
test += es[ab];
}
}
if (test % 4 != 0)
{
flint_printf("FAIL (%wd mod 4)\n", test % 4);
fmpz_mat_print_pretty(mat);
flint_printf("\n");
flint_abort();
}
test = (test / 4) % 2;
if (eps != test)
{
flint_printf("FAIL (%wd != %wd)\n", eps, test);
fmpz_mat_print_pretty(mat);
flint_printf("\n");
flint_abort();
}
fmpz_mat_clear(mat);
flint_free(chars);
flint_free(es);
}
TEST_FUNCTION_END(state);
}