From f6170d01d3d65e789210271be3b991d8e4c4e59f Mon Sep 17 00:00:00 2001 From: Pro7ech Date: Thu, 30 Oct 2025 16:48:24 +0100 Subject: [PATCH] update doc --- poulpy-schemes/src/tfhe/bdd_arithmetic/ciphertexts/fhe_uint.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/poulpy-schemes/src/tfhe/bdd_arithmetic/ciphertexts/fhe_uint.rs b/poulpy-schemes/src/tfhe/bdd_arithmetic/ciphertexts/fhe_uint.rs index 7fc6eda..789ff69 100644 --- a/poulpy-schemes/src/tfhe/bdd_arithmetic/ciphertexts/fhe_uint.rs +++ b/poulpy-schemes/src/tfhe/bdd_arithmetic/ciphertexts/fhe_uint.rs @@ -173,6 +173,7 @@ impl FheUint { } #[allow(clippy::too_many_arguments)] + // Self <- ((a.rotate_right(dst<<4) & 0xFFFF_0000) | (b.rotate_right(src<<4) & 0x0000_FFFF)).rotate_left(dst<<4); pub fn splice_u16( &mut self, module: &M, @@ -207,7 +208,7 @@ impl FheUint { } #[allow(clippy::too_many_arguments)] - // Store on the receiver a where the byte_a-th byte of a has been replaced by byte_src2 of src2. + // Self <- ((a.rotate_right(dst<<3) & 0xFFFF_FF00) | (b.rotate_right(src<<3) & 0x0000_00FF)).rotate_left(dst<<3); pub fn splice_u8( &mut self, module: &M,