17
17
const POW2_HALF : u32 = 1 << ( T :: USIZE - 1 ) ;
18
18
const MASK : Integer = ( ( 1 as Integer ) << T :: USIZE ) - 1 ;
19
19
const DIV_SHIFT : u32 = 28 + ( T :: U32 >> 3 ) * 4 ;
20
- const DIV_MUL : u64 = 2u64 . pow ( T :: DIV_SHIFT ) / FieldElement :: Q64 ;
20
+ const DIV_MUL : u64 = ( 1 << T :: DIV_SHIFT ) / FieldElement :: Q64 ;
21
21
}
22
22
23
23
// Traits for objects that allow compression / decompression
@@ -34,7 +34,7 @@ impl Compress for FieldElement {
34
34
// round(a / b) = floor((a + b/2) / b)
35
35
// a / q ~= (a * x) >> s where x / (2^s) ~= 1/q
36
36
fn compress < D : CompressionFactor > ( & mut self ) -> & Self {
37
- const Q_HALF : u64 = ( FieldElement :: Q64 - 1 ) / 2 ;
37
+ const Q_HALF : u64 = ( FieldElement :: Q64 - 1 ) >> 1 ;
38
38
let x = u64:: from ( self . 0 ) ;
39
39
let y = ( ( ( ( x << D :: USIZE ) + Q_HALF ) * D :: DIV_MUL ) >> D :: DIV_SHIFT ) . truncate ( ) ;
40
40
self . 0 = y. truncate ( ) & D :: MASK ;
@@ -95,14 +95,17 @@ pub(crate) mod test {
95
95
fn compression_decompression_inequality < D : CompressionFactor > ( ) {
96
96
for x in 0 ..FieldElement :: Q {
97
97
let mut y = FieldElement ( x) ;
98
-
98
+
99
99
y. compress :: < D > ( ) ;
100
100
y. decompress :: < D > ( ) ;
101
101
102
102
let lhs = ( i32:: from ( y. 0 ) - i32:: from ( x) ) % ( i32:: from ( FieldElement :: Q ) ) ;
103
103
let rhs = ( ( FieldElement :: Q32 + ( 1 << ( D :: U32 + 1 ) ) - 1 ) / ( 1 << ( D :: U32 + 1 ) ) ) as i32 ;
104
104
105
- assert ! ( lhs <= rhs, "Inequality failed for x = {x}: lhs = {lhs}, rhs = {rhs}" ) ;
105
+ assert ! (
106
+ lhs <= rhs,
107
+ "Inequality failed for x = {x}: lhs = {lhs}, rhs = {rhs}"
108
+ ) ;
106
109
}
107
110
}
108
111
0 commit comments