From cae9af36b03d283bf24788f42fa481970da8a14f Mon Sep 17 00:00:00 2001 From: youben11 Date: Thu, 2 Sep 2021 14:47:53 +0100 Subject: [PATCH] fix: print ksLogBase correctly --- compiler/src/main.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/compiler/src/main.cpp b/compiler/src/main.cpp index 96089b953..04b4fe185 100644 --- a/compiler/src/main.cpp +++ b/compiler/src/main.cpp @@ -195,8 +195,7 @@ processInputBuffer(mlir::MLIRContext &context, << ", brLevel: " << fheContext.parameter.brLevel << ", brLogBase: " << fheContext.parameter.brLogBase << ", ksLevel: " << fheContext.parameter.ksLevel - << ", polynomialSize: " << fheContext.parameter.ksLogBase - << "}\n"); + << ", ksLogBase: " << fheContext.parameter.ksLogBase << "}\n"); // Generate the keySet std::unique_ptr keySet;