Brett 2024-03-21 01:05:43 -04:00
parent 065ab60edc
commit 14c56b39ae
2 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.25)
project(lilfbtf5 VERSION 0.1.34)
project(lilfbtf5 VERSION 0.1.35)
option(ENABLE_ADDRSAN "Enable the address sanitizer" OFF)
option(ENABLE_UBSAN "Enable the ub sanitizer" OFF)

View File

@ -44,6 +44,7 @@ namespace fb
using arg_c_t = blt::size_t;
using func_t_call_t = std::function<void(func_t&, blt::span<detail::node_t*>)>;
using func_t_init_t = std::function<void(func_t&)>;
using fitness_eval_func_t = std::function<void(detail::node_t*)>;
using function_name = const std::string&;
using type_name = const std::string&;
}