From 246c013896d3c0c6c75028c932ceb67a8c94d47a Mon Sep 17 00:00:00 2001 From: Ahmet Inan Date: Sat, 14 Feb 2026 09:32:56 +0100 Subject: [PATCH] no CRC per default with PAC codes --- tests/pac_list_regression_test.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/pac_list_regression_test.cc b/tests/pac_list_regression_test.cc index 2c51fcd..5f6fac0 100644 --- a/tests/pac_list_regression_test.cc +++ b/tests/pac_list_regression_test.cc @@ -25,7 +25,7 @@ int main() const int MAX_N = 1 << MAX_M; const int M = 7; const int N = 1 << M; - const bool crc_aided = true; + const bool crc_aided = false; CODE::CRC crc(0xA8F4); const int C = 16; int K = R * N + crc_aided * C;