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

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": [1, 0],
"end_state": [4, 4]}

19
boards/tiny1.json Normal file
View File

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

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]
}

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]
}