From 350ec5903765c64ea6c4578c7e0ac684179b3a59 Mon Sep 17 00:00:00 2001 From: Ahmet Inan Date: Thu, 22 Feb 2024 11:15:44 +0100 Subject: [PATCH] use a higher order but less loops --- tests/osd_regression_test.cc | 6 +++--- tests/osld_regression_test.cc | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/osd_regression_test.cc b/tests/osd_regression_test.cc index dee1f24..020b491 100644 --- a/tests/osd_regression_test.cc +++ b/tests/osd_regression_test.cc @@ -18,14 +18,14 @@ int main() { #if 1 // BCH(127, 64) T=10 - const int O = 2; + const int O = 4; const int N = 127; const int K = 64; const int NR = 20; - const int loops = 1000; + const int loops = 10; const double low_SNR = -5; const double high_SNR = 5; - const double QEF_SNR = 1.5; + const double QEF_SNR = -1.5; typedef CODE::GaloisField<7, 0b10001001, uint8_t> GF; std::initializer_list minpols { 0b10001001, 0b10001111, 0b10011101, diff --git a/tests/osld_regression_test.cc b/tests/osld_regression_test.cc index 2f33133..444cbbd 100644 --- a/tests/osld_regression_test.cc +++ b/tests/osld_regression_test.cc @@ -20,14 +20,14 @@ int main() const bool oracle = true; #if 1 // BCH(127, 64) T=10 - const int O = 2; + const int O = 4; const int N = 127; const int K = 64; const int NR = 20; - const int loops = 1000; + const int loops = 10; const double low_SNR = -5; const double high_SNR = 5; - const double QEF_SNR = 1.5; + const double QEF_SNR = -2; typedef CODE::GaloisField<7, 0b10001001, uint8_t> GF; std::initializer_list minpols { 0b10001001, 0b10001111, 0b10011101,