fix(optimizer): Temporary fallback to the v0 strategy while the dag one is not fixed

This commit is contained in:
Quentin Bourgerie
2022-09-01 09:36:01 +02:00
parent eb4b0753dc
commit 98a799f807

View File

@@ -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};