Comparison operation
GE
Greater-or-equal guard logic and range checks.
Signature
| Raw symbols | FHE16_GE |
|---|---|
| Example | int32_t* out = FHE16_GE(a, b); |
Caller
Greater-or-equal guard logic and range checks.
Circuit Path
Homomorphic pathFHE16_LT followed by encrypted NOT.
Input, Output, Ownership
| Output | 1-bit boolean ciphertext. |
|---|---|
| Ownership | Returned ciphertext is caller-owned. |
| Implementation baseline | FHE16Ver6/include/soAPI/soAPI.hpp and FHE16Ver6/src/soAPI/soAPI.cpp |
C Example
int32_t* out = FHE16_GE(a, b);
FHE16_Free(out);