blob: 0d9917ac7468f65569d3de79ba582655239e611a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
#pragma once
#include "mod_wrapper.h"
namespace mod {
template <typename M_, int Phantom> struct BarrettBaseT {
using M = M_;
void set_mod(M mod_) {
mod = mod_;
inv_mod = static_cast<M2>(-1) / mod;
}
M get_mod() const { return mod; }
private:
using M2 = m2_t<M>;
public:
M reduce(M2 x) {
auto q = MultiplierT<M>::mul_hi(x, inv_mod);
auto r = x - q * mod;
return r >= mod ? r - mod : r;
}
private:
M mod;
M2 inv_mod;
};
template <int Phantom = 0>
using Barrett64T = ModWrapperT<BarrettBaseT<uint64_t, Phantom>>;
template <int Phantom = 0>
using BarrettT = ModWrapperT<BarrettBaseT<uint32_t, Phantom>>;
} // namespace mod
using mod::Barrett64T;
using mod::BarrettT;
|