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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
use super::{CRTInteger, OverflowInteger, ProperCrtUint, ProperUint};
use halo2_base::{
gates::{GateInstructions, RangeInstructions},
utils::ScalarField,
AssignedValue, Context,
QuantumCell::{Constant, Existing, Witness},
};
use itertools::Itertools;
pub fn assign<F: ScalarField>(
range: &impl RangeInstructions<F>,
ctx: &mut Context<F>,
a: impl Into<ProperUint<F>>,
b: impl Into<ProperUint<F>>,
limb_bits: usize,
limb_base: F,
) -> (OverflowInteger<F>, AssignedValue<F>) {
let a = a.into();
let b = b.into();
let k = a.0.len();
let mut out_limbs = Vec::with_capacity(k);
let mut borrow: Option<AssignedValue<F>> = None;
for (a_limb, b_limb) in a.0.into_iter().zip_eq(b.0) {
let (bottom, lt) = match borrow {
None => {
let lt = range.is_less_than(ctx, a_limb, b_limb, limb_bits);
(b_limb, lt)
}
Some(borrow) => {
let b_plus_borrow = range.gate().add(ctx, b_limb, borrow);
let lt = range.is_less_than(ctx, a_limb, b_plus_borrow, limb_bits + 1);
(b_plus_borrow, lt)
}
};
let out_limb = {
let a_with_borrow_val = limb_base * lt.value() + a_limb.value();
let out_val = a_with_borrow_val - bottom.value();
ctx.assign_region_last(
[
Existing(a_limb),
Existing(lt),
Constant(limb_base),
Witness(a_with_borrow_val),
Constant(-F::one()),
Existing(bottom),
Witness(out_val),
],
[0, 3],
)
};
out_limbs.push(out_limb);
borrow = Some(lt);
}
(OverflowInteger::new(out_limbs, limb_bits), borrow.unwrap())
}
pub fn crt<F: ScalarField>(
range: &impl RangeInstructions<F>,
ctx: &mut Context<F>,
a: ProperCrtUint<F>,
b: ProperCrtUint<F>,
limb_bits: usize,
limb_base: F,
) -> (CRTInteger<F>, AssignedValue<F>) {
let out_native = range.gate().sub(ctx, a.0.native, b.0.native);
let a_limbs = ProperUint(a.0.truncation.limbs);
let b_limbs = ProperUint(b.0.truncation.limbs);
let (out_trunc, underflow) = assign(range, ctx, a_limbs, b_limbs, limb_bits, limb_base);
let out_val = a.0.value - b.0.value;
(CRTInteger::new(out_trunc, out_native, out_val), underflow)
}