pacai.student.capture

 1import pacai.core.agentinfo
 2import pacai.util.alias
 3
 4def create_team() -> list[pacai.core.agentinfo.AgentInfo]:
 5    """
 6    Get the agent information that will be used to create a capture team.
 7    """
 8
 9    agent1_info = pacai.core.agentinfo.AgentInfo(name = pacai.util.alias.AGENT_DUMMY.long)
10    agent2_info = pacai.core.agentinfo.AgentInfo(name = pacai.util.alias.AGENT_DUMMY.long)
11
12    return [agent1_info, agent2_info]
def create_team() -> list[pacai.core.agentinfo.AgentInfo]:
 5def create_team() -> list[pacai.core.agentinfo.AgentInfo]:
 6    """
 7    Get the agent information that will be used to create a capture team.
 8    """
 9
10    agent1_info = pacai.core.agentinfo.AgentInfo(name = pacai.util.alias.AGENT_DUMMY.long)
11    agent2_info = pacai.core.agentinfo.AgentInfo(name = pacai.util.alias.AGENT_DUMMY.long)
12
13    return [agent1_info, agent2_info]

Get the agent information that will be used to create a capture team.