AIXI.Agent.Reset C# (CSharp) Method

Reset() public method

public Reset ( ) : void
return void
        public void Reset()
        {
            //note: when overriding this method, do not forget to call this base version.
            this.Age = 0;
            this.TotalReward = 0;
            this.LastUpdate = ActionUpdate;
        }