arb/dlog/vec_loop_add.c

28 lines
805 B
C
Raw Permalink Normal View History

2016-09-06 15:43:12 +02:00
/*
2016-03-18 18:28:11 +01:00
Copyright (C) 2016 Pascal Molin
2016-09-06 15:43:12 +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 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/>.
*/
2016-03-18 18:28:11 +01:00
#include "dlog.h"
2016-03-29 12:52:26 +01:00
/* vector of log(k,a)*loga % order in Z/modZ */
2016-03-18 18:28:11 +01:00
void
dlog_vec_loop_add(ulong * v, ulong nv, ulong a, ulong va, nmod_t mod, ulong na, nmod_t order)
2016-03-18 18:28:11 +01:00
{
ulong x, xp, vx;
vx = 0;
for (x = a; x != 1; x = nmod_mul(x, a, mod))
{
vx = nmod_add(vx, va, order);
for(xp = x; xp < nv; xp+=mod.n)
if (v[xp] != DLOG_NONE)
v[xp] = nmod_add(v[xp], vx, order);
2016-03-18 18:28:11 +01:00
}
}