CS581-Algos-Demo / agents.py
Andrei Cozma
Updates
3e2038a
raw
history blame
152 Bytes
# All supported agents
from MonteCarloAgent import MCAgent
from DPAgent import DPAgent
AGENTS_MAP = {
"MCAgent": MCAgent,
"DPAgent": DPAgent
}