initial commit

This commit is contained in:
2025-10-07 18:22:35 +02:00
commit c19876ed78
34 changed files with 3866 additions and 0 deletions

17
boards/tiny0.json Normal file
View File

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