Skip to content

Commit

Permalink
chore(hlapi): stabilize FheTypes
Browse files Browse the repository at this point in the history
  • Loading branch information
mayeul-zama committed Nov 15, 2024
1 parent f9e8df4 commit 05b9f48
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions tfhe/src/c_api/high_level_api/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,23 +22,23 @@ mod zk;
#[repr(C)]
#[allow(non_camel_case_types)]
pub enum FheTypes {
Type_FheBool,
Type_FheBool = 0,
Type_FheUint2,
Type_FheUint4,
Type_FheUint4 = 1,
Type_FheUint6,
Type_FheUint8,
Type_FheUint8 = 2,
Type_FheUint10,
Type_FheUint12,
Type_FheUint14,
Type_FheUint16,
Type_FheUint32,
Type_FheUint64,
Type_FheUint128,
Type_FheUint160,
Type_FheUint256,
Type_FheUint512,
Type_FheUint1024,
Type_FheUint2048,
Type_FheUint16 = 3,
Type_FheUint32 = 4,
Type_FheUint64 = 5,
Type_FheUint128 = 6,
Type_FheUint160 = 7,
Type_FheUint256 = 8,
Type_FheUint512 = 9,
Type_FheUint1024 = 10,
Type_FheUint2048 = 11,
Type_FheInt2,
Type_FheInt4,
Type_FheInt6,
Expand Down

0 comments on commit 05b9f48

Please sign in to comment.