Skip to content

Commit 2566ea9

Browse files
committed
Fixed A* in Form.cs and Design
1 parent ddad695 commit 2566ea9

18 files changed

+107
-198
lines changed

Diff for: .vs/PathAlgorithms/v16/.suo

-13 KB
Binary file not shown.

Diff for: .vs/PathAlgorithms/v16/Server/sqlite3/storage.ide

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
-3.03 MB
Binary file not shown.

Diff for: Astar.cs

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ namespace PathAlgorithms
1111
class Astar
1212
{
1313

14-
1514
int[] d1 = new int[] { 1, 1, 1, -1, -1, -1, 0, 0 }; // movements
1615
int[] d2 = new int[] { 1, -1, 0, 0, -1, 1, 1, -1 };
1716

Diff for: Dijkstra.cs

-137
This file was deleted.

Diff for: Form1.Designer.cs

+74-55
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)