Пример #1
0
from game.Game import Game
from logic.StandardLogic import StandardLogic
from ui.ConsoleUI import ConsoleIndicator, ConsolePlayer

Game(
	StandardLogic(),
	ConsoleIndicator(),
	ConsolePlayer(),
).process()
Пример #2
0
from ai.OneStepAI import OneStepAI
from game.Game import Game
from logic.StandardLogic import StandardLogic
from nerve.EvaluateCore import EvaluateCore
from ui.ConsoleUI import ConsoleIndicator

core = EvaluateCore("../graph/core2", "core")
Game(StandardLogic(), ConsoleIndicator(), OneStepAI(core)).process()
Пример #3
0
from ai.RandomAI import RandomAI
from game.Game import Game
from logic.StandardLogic import StandardLogic
from ui.ConsoleUI import ConsoleIndicator

Game(StandardLogic(), ConsoleIndicator(), RandomAI()).process()
Пример #4
0
from ai.TreeStepAI import TreeStepAI
from game.Game import Game
from logic.StandardLogic import StandardLogic
from nerve.EvaluateCore import EvaluateCore
from ui.ConsoleUI import ConsoleIndicator

core = EvaluateCore("../graph/core3", "core")
Game(StandardLogic(), ConsoleIndicator(), TreeStepAI(core, 256)).process()
Пример #5
0
from ai.TreeStepAI import TreeStepAI
from game.Game import Game
from logic.StandardLogic import StandardLogic
from nerve.EvaluateCore import EvaluateCore
from ui.ConsoleUI import ConsolePlayer, ConsoleIndicator

core = EvaluateCore("../graph/core3", "core")
Game(StandardLogic(), ConsoleIndicator(), ConsolePlayer(),
     TreeStepAI(core, 256)).process()