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