AIXI.MazeEnvironment.InMaze C# (CSharp) Method

InMaze() public method

public InMaze ( int x, int y ) : bool
x int
y int
return bool
        public bool InMaze(int x, int y)
        {
            return (x >= 0 && x < Width) && (y >= 0 && y < Height);
        }