player, a feat previously considered decades away.
[6,17]
This paradigm evolved further with AlphaZero and
MuZero, which eliminated reliance on human game data and learned strategies entirely through self-play.
[6,10]
In parallel, advances in imperfect-information games, such as Libratus and Pluribus in poker, demonstrated
that AI could reason under uncertainty and incomplete information.
[7]
Recent trends in board-game AI
emphasize the use of convolutional neural networks, deep reinforcement learning, and hybrid systems that
combine learning-based models with classical search techniques.
[10,17-20]
While these approaches achieve
exceptional performance, they also introduce challenges related to computational cost, scalability,
explainability, and real-time deployment.
[4]
Many state-of-the-art systems require extensive centralized
computing resources, making them challenging to deploy in practical or resource-constrained environments
[6]. Despite significant progress, a key research gap remains in developing AI systems that balance strategic
strength with computational efficiency and deployment feasibility.
[2,9]
Most existing solutions prioritize peak
performance over scalability, latency, and operational cost. This motivates the need for hybrid architectures
that retain the strategic advantages of deep learning while controlling inference complexity and enabling
modular deployment.
[11]
This study aims to address this gap by proposing a hybrid searchlearning architecture for AI in board games.
The primary contribution of this work lies in designing a modular four-layer framework that integrates
Minimax, MCTS, and deep reinforcement learning, and evaluating its performance across multiple board games
using comprehensive experimental metrics.
[1,10]
The key contributions of this study are as follows:
1. This study provides a concise review of the evolution of AI techniques in board games, from classical rule-
based systems to modern self-learning models.
2. A hybrid four-layer AI architecture combining search algorithms and deep reinforcement learning is
proposed for scalable board-game intelligence.
3. The proposed system is experimentally evaluated on Chess, Go, and Checkers using multiple performance
metrics, including win rate, Elo rating, and inference latency.
4. The study demonstrates that efficient hybrid models can achieve strong strategic performance while
maintaining real-time deployment viability.
2. Related work
2.1 Early artificial intelligence in board games
The application of artificial intelligence to board games dates back to the earliest days of AI research, where
games were viewed as simplified models of strategic reasoning.
[1]
Classical approaches relied on deterministic
search algorithms such as Minimax and AlphaBeta pruning, supported by handcrafted evaluation functions.
[1]
Deep Blue demonstrated the effectiveness of brute-force search combined with domain-specific heuristics and
parallel computation, establishing board games as credible benchmarks for AI performance.
[13]
However, such
systems required extensive expert knowledge and were not adaptable, as their intelligence was limited to
predefined rules and evaluation metrics.
[1]
2.2 Monte Carlo Tree Search and probabilistic methods
To overcome the limitations of exhaustive search in large state spaces, Monte Carlo Tree Search (MCTS) emerged
as a powerful alternative.
[9]
MCTS enabled efficient exploration of game trees through randomized simulations
and statistical decision-making.
[2]
This approach proved particularly successful in games with high branching
factors, such as Go, where traditional Minimax-based methods were computationally infeasible.
[17]
Early MCTS-
based systems demonstrated improved scalability and decision quality but still relied on handcrafted rollout
policies and lacked learning capability, limiting their long-term adaptability.
[9]
2.3 Hybrid architectures and generalization
Recent research has focused on hybrid architectures that combine classical search algorithms with learning-
based models.
[21]
Systems such as Leela Zero and other AlphaZero-inspired frameworks highlight the benefits of
integrating neural policy and value networks with MCTS.
[6]
While these hybrid approaches improve adaptability
and strategic depth, they often prioritize peak performance over deployment efficiency.
[10]
Additionally, most
existing studies focus on single-game optimization rather than designing generalized, modular frameworks
capable of supporting multiple board games with minimal redesign.
[22]
2.4 Deep learning and reinforcement learning approaches
The integration of deep neural networks with reinforcement learning marked a significant shift in board-game
AI. AlphaGo combined convolutional neural networks with MCTS and reinforcement learning to achieve
superhuman performance in Go.
[23]
Subsequent systems such as AlphaZero and MuZero eliminated reliance on
human game data, learning optimal strategies entirely through self-play.
[6]
These systems demonstrated
remarkable generalization across multiple games, including Chess, Go, and Shogi. Despite their success, such
approaches require massive computational resources, complex distributed training pipelines, and are often