From 9d1457e1e8d6786b5f6588fab759f7d9fc6e0aaa Mon Sep 17 00:00:00 2001 From: Allaun Silverfox <28494262+allaunthefox@users.noreply.github.com> Date: Sat, 16 May 2026 18:47:53 -0500 Subject: [PATCH] Add MarkovJunior 16D shim example config --- .../famm_markovjunior_16d_shim.example.json | 53 +++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 shared-data/examples/famm_markovjunior_16d_shim.example.json diff --git a/shared-data/examples/famm_markovjunior_16d_shim.example.json b/shared-data/examples/famm_markovjunior_16d_shim.example.json new file mode 100644 index 00000000..5b1bf7ae --- /dev/null +++ b/shared-data/examples/famm_markovjunior_16d_shim.example.json @@ -0,0 +1,53 @@ +{ + "source": { + "engine": "MarkovJunior", + "shim_mode": "rule_anchor_projection", + "reference": "https://github.com/mxgmn/MarkovJunior" + }, + "grid": { + "dimensions": 2, + "size": [16, 16], + "alphabet": ["B", "W", "R", "G", "A", "*"] + }, + "constraints": { + "observations": [ + {"cell": [15, 15], "target": "R", "weight": 0.8} + ], + "temperature": 0.0 + }, + "rules": [ + { + "id": "growth", + "left": "WB", + "right": "WW", + "weight": 1.0, + "node": "exists", + "orientation": "axis_aligned", + "chirality": "neutral" + }, + { + "id": "maze_growth", + "left": "WBB", + "right": "WAW", + "weight": 0.8, + "node": "exists", + "orientation": "axis_aligned", + "chirality": "right" + }, + { + "id": "backtracker_step", + "left": "RBB", + "right": "GGR", + "weight": 0.6, + "node": "markov", + "orientation": "axis_aligned", + "chirality": "right" + } + ], + "projection": { + "include_chirality": true, + "include_constraints": true, + "include_delta_memory": true, + "nuvmap_projection": "frontier" + } +}