add new line and increase operations count

This commit is contained in:
2021-01-10 16:08:23 +01:00
parent f2f171ff77
commit 165fb8676b

View File

@@ -17,7 +17,7 @@ using namespace std::chrono;
#define DEBUG_MSG(str) do { } while ( false ) #define DEBUG_MSG(str) do { } while ( false )
#endif #endif
#define OP_COUNT 100000 #define OP_COUNT 1000000
#define THREADS 4 #define THREADS 4
int done_count = 0; int done_count = 0;
@@ -85,7 +85,7 @@ void run_checker() {
adt_stack->do_op(&op); adt_stack->do_op(&op);
} }
} }
std::cout << "Done checking operations" << std::endl; std::cout << std::endl << "Done checking operations" << std::endl;
} }
int main(){ int main(){