1
0
Fork 0
mirror of https://github.com/dancojocaru2000/ai-project-idastar.git synced 2025-02-23 00:49:34 +02:00

Remove backtracking

This commit is contained in:
Kenneth Bruen 2021-12-06 18:44:25 +02:00
parent 055fa3aa3c
commit 57c4728e6a
Signed by: kbruen
GPG key ID: C1980A470C3EE5B1

View file

@ -204,7 +204,6 @@ namespace IdaStar
if (_board[neighbour.Row][neighbour.Column] == CellState.PATH) { if (_board[neighbour.Row][neighbour.Column] == CellState.PATH) {
_board[neighbour.Row][neighbour.Column] = CellState.EMPTY; _board[neighbour.Row][neighbour.Column] = CellState.EMPTY;
} }
AlgorithmStep?.Invoke(this, threshold);
} }