From 165fb8676bffd34722d49e48743c4ab8fa049766 Mon Sep 17 00:00:00 2001 From: Hannes Kuchelmeister Date: Sun, 10 Jan 2021 16:08:23 +0100 Subject: [PATCH] add new line and increase operations count --- Assignment_3/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Assignment_3/main.cpp b/Assignment_3/main.cpp index 40008c7..835987f 100644 --- a/Assignment_3/main.cpp +++ b/Assignment_3/main.cpp @@ -17,7 +17,7 @@ using namespace std::chrono; #define DEBUG_MSG(str) do { } while ( false ) #endif -#define OP_COUNT 100000 +#define OP_COUNT 1000000 #define THREADS 4 int done_count = 0; @@ -85,7 +85,7 @@ void run_checker() { adt_stack->do_op(&op); } } - std::cout << "Done checking operations" << std::endl; + std::cout << std::endl << "Done checking operations" << std::endl; } int main(){