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
use super::{CRTInteger, OverflowInteger};
use halo2_base::{gates::GateInstructions, utils::ScalarField, Context};
use itertools::Itertools;
use std::cmp::max;
pub fn assign<F: ScalarField>(
gate: &impl GateInstructions<F>,
ctx: &mut Context<F>,
a: OverflowInteger<F>,
b: OverflowInteger<F>,
) -> OverflowInteger<F> {
let out_limbs = a
.limbs
.into_iter()
.zip_eq(b.limbs)
.map(|(a_limb, b_limb)| gate.add(ctx, a_limb, b_limb))
.collect();
OverflowInteger::new(out_limbs, max(a.max_limb_bits, b.max_limb_bits) + 1)
}
pub fn crt<F: ScalarField>(
gate: &impl GateInstructions<F>,
ctx: &mut Context<F>,
a: CRTInteger<F>,
b: CRTInteger<F>,
) -> CRTInteger<F> {
let out_trunc = assign(gate, ctx, a.truncation, b.truncation);
let out_native = gate.add(ctx, a.native, b.native);
let out_val = a.value + b.value;
CRTInteger::new(out_trunc, out_native, out_val)
}