From 9c5ad29fec5542f9769e35029991545b2f9d976c Mon Sep 17 00:00:00 2001 From: Francesco Bariatti <francesco.bariatti@insa-rennes.fr> Date: Mon, 1 Feb 2016 14:07:29 +0100 Subject: [PATCH] Diminution espace allocation --- src/mcts/allocator.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mcts/allocator.hpp b/src/mcts/allocator.hpp index f887fdc..f765282 100644 --- a/src/mcts/allocator.hpp +++ b/src/mcts/allocator.hpp @@ -15,7 +15,7 @@ namespace mcts void copy(node* n1, node* n2, unsigned int prunning = 0); public: - allocator(unsigned int size = 100000000U); + allocator(unsigned int size = 10000000U); ~allocator(); node* allocate(unsigned int size); void clear(); -- GitLab