AIMA.Core.Environment.EightPuzzle.EightPuzzleBoard.getValueAt C# (CSharp) Метод

getValueAt() приватный Метод

private getValueAt ( int x, int y ) : int
x int
y int
Результат int
	private int getValueAt(int x, int y) {
		// refactor this use either case or a div/mod soln
		return state[getAbsPosition(x, y)];
	}

Same methods

EightPuzzleBoard::getValueAt ( XYLocation loc ) : int