#ifndef __MCTS_SETTINGS_HPP__ #define __MCTS_SETTINGS_HPP__ // Allocated memory for the mcts. If not enough the program may crash #define MCTS_ALLOCATOR_SIZE 100000000U // Reflection time for every turn of the mcts (in ms) #define MCTS_TURN_TIME 5000 #endif