Compare commits

...

1 Commits

Author SHA1 Message Date
Mayeul@Zama
fad45a5a7b fix(shortint): change oprf test pvalue to have less false positives 2024-05-29 11:22:00 +02:00
2 changed files with 2 additions and 2 deletions

View File

@@ -199,7 +199,7 @@ pub(crate) mod test {
fn oprf_test_uniformity_ci_run_filter() {
let sample_count: usize = 10_000;
let p_value_limit: f64 = 0.001;
let p_value_limit: f64 = 0.000_001;
let random_bits_count = 3;

View File

@@ -205,7 +205,7 @@ pub(crate) mod test {
fn oprf_test_uniformity_ci_run_filter() {
let sample_count: usize = 100_000;
let p_value_limit: f64 = 0.001;
let p_value_limit: f64 = 0.000_001;
use crate::shortint::gen_keys;
use crate::shortint::parameters::PARAM_MESSAGE_2_CARRY_2_KS_PBS;