From 98a799f807035eb1158e93c3cf01a99e83cd89e9 Mon Sep 17 00:00:00 2001 From: Quentin Bourgerie Date: Thu, 1 Sep 2022 09:36:01 +0200 Subject: [PATCH] fix(optimizer): Temporary fallback to the v0 strategy while the dag one is not fixed --- compiler/include/concretelang/Support/V0Parameters.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/include/concretelang/Support/V0Parameters.h b/compiler/include/concretelang/Support/V0Parameters.h index 70264a435..f74f52df8 100644 --- a/compiler/include/concretelang/Support/V0Parameters.h +++ b/compiler/include/concretelang/Support/V0Parameters.h @@ -26,7 +26,7 @@ struct Config { std::uint64_t security; double fallback_log_norm_woppbs; }; -constexpr Config DEFAULT_CONFIG = {P_ERROR_4_SIGMA, false, false, +constexpr Config DEFAULT_CONFIG = {P_ERROR_4_SIGMA, false, true, DEFAULT_SECURITY, DEFAULT_FALLBACK_LOG_NORM_WOPPBS};