AIXI.ExtendedTigerEnvironment.reset C# (CSharp) 메소드

reset() 공개 메소드

public reset ( ) : void
리턴 void
        public void reset()
        {
            // puts tiger and gold to random place, and agent to seat
            // observation/Reward are not changed

            if (Utils.ProbabilisticDecision(0.5))
            {
                this.tiger = ORight;
                this.gold = OLeft;
            }
            else
            {
                this.tiger = OLeft;
                this.gold = ORight;
            }

            this.sitting = true;
        }