tfhe_libex
half_adder.hpp
[詳解]
1 
5 #ifndef HALF_ADDER
6 #define HALF_ADDER
7 #include "../../../common/tfhe_lib.hpp"
8 
9 void half_adder(LweSample* sum, LweSample* carry_out, LweSample* a,
10  LweSample* b, const TFheGateBootstrappingCloudKeySet* bk);
11 
12 void half_adder_4sub(LweSample* sum, LweSample* carry_out, LweSample* a,
13  LweSample* b, const TFheGateBootstrappingCloudKeySet* bk);
14 
15 #endif