/* Copyright (C) 2015 Vladimir Glazachev This file is part of FLINT. FLINT 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 "aprcl.h" void unity_zpq_coeff_add(unity_zpq f, slong i, slong j, const fmpz_t x) { if (i >= fmpz_mod_poly_length(f->polys[j], f->ctx)) { fmpz_mod_poly_set_coeff_fmpz(f->polys[j], i, x, f->ctx); return; } fmpz_add(f->polys[j]->coeffs + i, f->polys[j]->coeffs + i, x); if (fmpz_cmp(f->polys[j]->coeffs + i, fmpz_mod_ctx_modulus(f->ctx)) >= 0) fmpz_sub(f->polys[j]->coeffs + i, f->polys[j]->coeffs + i, fmpz_mod_ctx_modulus(f->ctx)); } void unity_zpq_coeff_add_ui(unity_zpq f, slong i, slong j, ulong x) { if (i >= fmpz_mod_poly_length(f->polys[j], f->ctx)) { fmpz_mod_poly_set_coeff_ui(f->polys[j], i, x, f->ctx); return; } fmpz_add_ui(f->polys[j]->coeffs + i, f->polys[j]->coeffs + i, x); if (fmpz_cmp(f->polys[j]->coeffs + i, fmpz_mod_ctx_modulus(f->ctx)) >= 0) fmpz_sub(f->polys[j]->coeffs + i, f->polys[j]->coeffs + i, fmpz_mod_ctx_modulus(f->ctx)); }