Browse Source

Forgot minor things about IDA*

Minor things like avoiding obstacles...
pull/1/head
Kenneth Bruen 3 years ago
parent
commit
6e0bb36132
Signed by: kbruen
GPG Key ID: C1980A470C3EE5B1
  1. 13
      IDAstar.cs

13
IDAstar.cs

@ -179,13 +179,26 @@ namespace IdaStar
if (!neighbour.IsInsideBox(_board.Count, _board[0].Count)) {
continue;
}
if (_board[neighbour.Row][neighbour.Column] == CellState.OBSTACLE) {
continue;
}
if (_board[neighbour.Row][neighbour.Column] == CellState.EMPTY) {
_board[neighbour.Row][neighbour.Column] = CellState.PATH;
}
AlgorithmStep?.Invoke(this);
var neighbourF = search(neighbour, cost + increment, threshold);
if (neighbourF < min) {
min = neighbourF;
}
if (min == zero) {
break;
}
if (_board[neighbour.Row][neighbour.Column] == CellState.PATH) {
_board[neighbour.Row][neighbour.Column] = CellState.EMPTY;
}
}
return min;

Loading…
Cancel
Save