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/tiny3.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],
[0, 1, 0, 1, 0],
[0, 0, 0, 0, 0]
],
"costs": [
[1, 10, 10, 0, 1],
[1, 0, 10, 0, 1],
[1, 1, 5, 5, 1],
[10, 1, 1, 10, 1],
[2, 2, 1, 10, 1]
],
"start_state": [0, 0],
"end_state": [4, 4]
}