Commit 7902b769 authored by Xavier Thompson's avatar Xavier Thompson

Adapt and edit test deque.cpp

parent 49be2d41
......@@ -12,9 +12,9 @@ using namespace typon;
using u64 = std::uint_fast64_t;
using uint = unsigned int;
static uint thieves = 1;
static u64 N = u64(1) << 20;
static fdt::lock_free::deque<int> deque {thieves + 1};
static uint thieves = 8;
static u64 N = u64(1) << 24;
static fdt::lock_free::deque<int> deque {};
static std::atomic<bool> full = false;
static std::vector<std::vector<int>> results(thieves + 1);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment