Skip to content
Snippets Groups Projects
Forked from Bariatti Francesco / pingouins
52 commits ahead of the upstream repository.
MCTS_SETTINGS.hpp 259 B
#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