AIXI.RandomAgent.Playout C# (CSharp) Méthode

Playout() public méthode

public Playout ( int horizon ) : double
horizon int
Résultat double
        public override double Playout(int horizon)
        {
            return horizon * Utils.RandomDouble((int)this.Environment.minimum_reward(), (int)this.Environment.maximum_reward());
        }