remove redundant test

thread
Brett 2024-08-06 13:45:24 -04:00
parent b40af05816
commit 1fb168a8f8
3 changed files with 5 additions and 10 deletions

View File

@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.25)
project(blt-gp VERSION 0.0.121)
project(blt-gp VERSION 0.0.122)
include(CTest)

View File

@ -22,7 +22,8 @@
#include <iostream>
#include <thread>
static constexpr long SEED = 41912;
//static constexpr long SEED = 41912;
static const unsigned long SEED = std::random_device()();
struct context
{

View File

@ -56,17 +56,11 @@ namespace blt::gp
operations_stack.pop_back();
if (operation.is_value)
{
//BLT_DEBUG("Processed Value %ld with size %ld", operation.id, stack_allocator::aligned_size(operation.type_size));
//BLT_DEBUG("Stack info: %ld %ld", values_process.size().total_used_bytes, value_stack.size().total_used_bytes);
//BLT_DEBUG("In Head: %ld %ld", values_process.bytes_in_head(), value_stack.bytes_in_head());
value_stack.transfer_bytes(values_process, operation.type_size);
continue;
}
//BLT_DEBUG("Processed function %ld with size %ld", operation.id, stack_allocator::aligned_size(operation.type_size));
//BLT_TRACE("Stack info: %ld %ld", values_process.size().total_used_bytes, value_stack.size().total_used_bytes);
//BLT_INFO("In Head: %ld %ld", values_process.bytes_in_head(), value_stack.bytes_in_head());
operation.func(context, values_process, value_stack);
operations_stack.emplace_back(empty_callable, operation.type_size, operation.id, true);
operation.func(context, values_process, values_process);
//operations_stack.emplace_back(empty_callable, operation.type_size, operation.id, true);
}
return results;