AIXI.MazeEnvironment.exists_free_space C# (CSharp) Method

exists_free_space() public method

public exists_free_space ( ) : bool
return bool
        public bool exists_free_space()
        {
            foreach (var ch in this.Maze) {
                if (ch == CEmpty) {
                    return true;
                }
            }
            return false;
        }