forked from tjsavage-test-organization/cs221_final_project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.py
executable file
·47 lines (35 loc) · 1.41 KB
/
config.py
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# config.py
# ---------
# Licensing Information: Please do not distribute or publish solutions to this
# project. You are free to use and extend these projects for educational
# purposes. The Pacman AI projects were developed at UC Berkeley, primarily by
# John DeNero ([email protected]) and Dan Klein ([email protected]).
# For more info, see http://inst.eecs.berkeley.edu/~cs188/sp09/pacman.html
"""
-----------------------
Agent Configuration
-----------------------
Settings:
- TeamName (string)
The official name of your team. Names
must be alpha-numeric only. Agents with
invalid team names will not execute.
- AgentFactory (string)
The fully qualified name of the agent
factory to execute.
- AgentArgs (dict of string:string)
Arguments to pass to the agent factory
- NotifyList (list of strings)
A list of email addresses to notify
to when this agent competes.
- Partners (list of strings)
Group members who have contributed to
this agent code and design.
"""
# Alpha-Numeric only
TeamName = 'MyTeamName'
# Filename.FactoryClassName (CASE-sensitive)
AgentFactory = 'baselineAgents.AllOffenseAgents'
Partners = ['Rory MacQueen, Charlie Janac, Juan Lozano, Taylor Savage']
AgentArgs = {'first':'offense', 'second':'defense', 'third':'offense'}