arb/dlog/1modpe.c

27 lines
698 B
C
Raw Normal View History

2016-09-06 15:43:12 +02:00
/*
2016-03-14 11:14:54 +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:14:54 +01:00
#include "dlog.h"
2016-03-25 15:11:14 +01:00
ulong
dlog_1modpe(const dlog_1modpe_t t, ulong b1, ulong p, ulong e, nmod_t pe)
2016-03-14 11:14:54 +01:00
{
2016-03-25 15:11:14 +01:00
if (e == 1)
return 0;
else
{
ulong logb1;
logb1 = dlog_1modpe_mod1p(b1, p, e, t->inv1p, pe);
/* only need mod p^(e-1) */
return nmod_mul(logb1, t->invloga1, pe);
}
2016-03-14 11:14:54 +01:00
}