From 6fa4098e36068878a4cd1d953bc19275d23e04f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maximilian=20Ke=C3=9Fler?= Date: Sun, 6 Aug 2023 15:05:34 +0200 Subject: [PATCH] count enumerated states --- game_state.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/game_state.hpp b/game_state.hpp index d8bf18b..f304679 100644 --- a/game_state.hpp +++ b/game_state.hpp @@ -337,6 +337,7 @@ namespace Hanabi { template double HanabiState::backtrack(size_t depth) { + _enumerated_states++; if (_score == 5 * num_suits) { return 1; }