AIXI.ExtendedTigerEnvironment.reset C# (CSharp) Method

reset() public method

public reset ( ) : void
return 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;
        }