Browse Source

Remove backtracking

master
Kenneth Bruen 3 years ago
parent
commit
57c4728e6a
Signed by: kbruen
GPG Key ID: C1980A470C3EE5B1
  1. 1
      IDAstar.cs

1
IDAstar.cs

@ -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);
} }

Loading…
Cancel
Save