AIXI.TigerEnvironment.place_tiger C# (CSharp) Method

place_tiger() public method

public place_tiger ( ) : void
return void
        public void place_tiger()
        {
            if (Utils.ProbabilisticDecision(0.5))
            //if (this.myrnd.NextDouble() < 0.5)
            {
                this.Tiger = OLeft;
                this.Gold = ORight;
            }
            else
            {
                this.Tiger = ORight;
                this.Gold = OLeft;
            }
        }