first commit

This commit is contained in:
2025-10-19 17:26:54 +02:00
commit af91c3effe
41 changed files with 4113 additions and 0 deletions

17
boards/tiny4.json Normal file
View File

@@ -0,0 +1,17 @@
{"type": "Simple2DProblem",
"board": [
[0, 0, 0, 0, 0],
[0, 1, 0, 1, 0],
[0, 1, 0, 1, 0],
[0, 1, 1, 1, 1],
[0, 0, 0, 0, 0]
],
"costs": [
[3, 2, 4, 4, 1],
[2, 3, 4, 2, 2],
[3, 3, 3, 1, 4],
[2, 4, 2, 2, 1],
[4, 3, 4, 1, 2]
],
"start_state": [0, 0],
"end_state": [4, 4]}