示例#1
0
文件: play.go 项目: jwowillo/mancalai
// AvailableAgentConstructors returns all of the available agents for use in
// this package.
func AvailableAgentConstructors() []ai.AgentConstructor {
	return append(ai.AvailableAgentConstructors(), NewHumanAgent)
}
示例#2
0
文件: sort.go 项目: jwowillo/mancalai
// AvailableAgentConstructors is all of the available ai.AgentConstructors
// available in this package.
func AvailableAgentConstructors() []ai.AgentConstructor {
	return ai.AvailableAgentConstructors()
}