initial commit

This commit is contained in:
2025-11-03 09:16:40 +01:00
commit 0e48e52f8a
9 changed files with 960 additions and 0 deletions

19
boards/tiny2.json Normal file
View File

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