From 57c4728e6a7eaa62c8886b9f971e2fe945014e0f Mon Sep 17 00:00:00 2001 From: Dan Cojocaru Date: Mon, 6 Dec 2021 18:44:25 +0200 Subject: [PATCH] Remove backtracking --- IDAstar.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/IDAstar.cs b/IDAstar.cs index aa99542..f0c416d 100644 --- a/IDAstar.cs +++ b/IDAstar.cs @@ -204,7 +204,6 @@ namespace IdaStar if (_board[neighbour.Row][neighbour.Column] == CellState.PATH) { _board[neighbour.Row][neighbour.Column] = CellState.EMPTY; } - AlgorithmStep?.Invoke(this, threshold); }