File size: 688 Bytes
40ee6b4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
"""
MCTS (Monte Carlo Tree Search) module for multi-agent framework.

Provides deterministic, testable MCTS with:
- Progressive widening for controlled branching
- Simulation result caching
- Configurable selection and rollout policies
- Experiment tracking and analysis
"""

from .config import MCTSConfig, create_preset_config
from .core import MCTSEngine, MCTSNode
from .experiments import ExperimentResult, ExperimentTracker
from .policies import RolloutPolicy, SelectionPolicy, ucb1

__all__ = [
    "MCTSNode",
    "MCTSEngine",
    "ucb1",
    "RolloutPolicy",
    "SelectionPolicy",
    "MCTSConfig",
    "create_preset_config",
    "ExperimentTracker",
    "ExperimentResult",
]