From 114f8a491a1cf08d4a5a267ed93736bc76fe8986 Mon Sep 17 00:00:00 2001 From: Aleksey Lobanov Date: Fri, 13 Dec 2019 19:08:07 +0300 Subject: [PATCH] Now shoud work for 4 arguments --- main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.cpp b/main.cpp index 699341a..db08b7d 100644 --- a/main.cpp +++ b/main.cpp @@ -11,7 +11,7 @@ using namespace std; typedef uint16_t Storage; -const size_t ARGS_COUNT = 3; +const size_t ARGS_COUNT = 4; const size_t FUNCTION_LEN = 1ll << ARGS_COUNT; const size_t FUNCTIONS_COUNT = 1ll << FUNCTION_LEN; typedef Function MyFunction;