EfficientZeroV2/ez/mcts/__init__.py
“Shengjiewang-Jason” 1367bca203 first commit
2024-06-07 16:02:01 +08:00

14 lines
306 B
Python

# Copyright (c) EVAR Lab, IIIS, Tsinghua University.
#
# This source code is licensed under the GNU License, Version 3.0
# found in the LICENSE file in the root directory of this source tree.
from .py_mcts import PyMCTS
from .cy_mcts import CyMCTS
names = {
'python': PyMCTS,
'cython': CyMCTS
}