2016-09-06 15:43:12 +02:00
|
|
|
/*
|
2016-03-14 11:00:14 +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-14 11:00:14 +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-14 11:00:14 +01:00
|
|
|
void
|
|
|
|
dlog_vec_loop(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, vx;
|
2016-03-21 16:55:43 +01:00
|
|
|
dlog_vec_fill(v, nv, DLOG_NOT_FOUND);
|
2016-03-18 18:28:11 +01:00
|
|
|
x = 1; vx = 0;
|
|
|
|
do
|
2016-03-14 11:00:14 +01:00
|
|
|
{
|
2016-03-20 22:32:47 +01:00
|
|
|
if (x < nv)
|
|
|
|
v[x] = vx;
|
2016-03-18 18:28:11 +01:00
|
|
|
x = nmod_mul(x, a, mod);
|
2016-03-17 17:27:28 +01:00
|
|
|
vx = nmod_add(vx, va, order);
|
2016-03-14 11:00:14 +01:00
|
|
|
}
|
2016-03-18 18:28:11 +01:00
|
|
|
while (x != 1);
|
2016-09-14 14:08:31 +02:00
|
|
|
for (x = mod.n + 1; x < nv; x++)
|
2016-03-18 18:28:11 +01:00
|
|
|
v[x] = v[x - mod.n];
|
2016-03-14 11:00:14 +01:00
|
|
|
}
|