AIXITests.AgentTest.AgentTest C# (CSharp) Метод

AgentTest() публичный Метод

public AgentTest ( ) : System
Результат System
        public AgentTest()
        {
            this.Options = new Dictionary<string, string>();

            Options["ct-depth"] = "4";
            Options["agent-horizon"] = "6";
            Options["mc-simulations"] = "200";

            this.Env = new CoinFlip(Options);

            this.Agent = new MC_AIXI_CTW(Env, Options);
        }