style(compiler/client): fix the naming LweSize to LweDimension for key size

This commit is contained in:
Quentin Bourgerie
2022-02-11 11:46:17 +01:00
committed by Quentin Bourgerie
parent 3330b2f855
commit c8b45cc853

View File

@@ -23,12 +23,12 @@ typedef size_t PolynomialSize;
typedef size_t Precision;
typedef double Variance;
typedef uint64_t LweSize;
typedef uint64_t LweDimension;
typedef uint64_t GlweDimension;
typedef std::string LweSecretKeyID;
struct LweSecretKeyParam {
LweSize size;
LweDimension size;
void hash(size_t &seed);
};