mirror of
https://github.com/blackboxprogramming/universal-computer.git
synced 2026-03-17 08:57:13 -05:00
Add busy-beaver-3 Turing machine definition
This commit is contained in:
15
machines/busy-beaver-3.json
Normal file
15
machines/busy-beaver-3.json
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"states": ["A", "B", "C", "halt"],
|
||||||
|
"alphabet": ["0", "1"],
|
||||||
|
"blank": "0",
|
||||||
|
"start": "A",
|
||||||
|
"halt": "halt",
|
||||||
|
"transitions": {
|
||||||
|
"A:0": ["B", "1", "R"],
|
||||||
|
"A:1": ["C", "1", "L"],
|
||||||
|
"B:0": ["A", "1", "L"],
|
||||||
|
"B:1": ["B", "1", "R"],
|
||||||
|
"C:0": ["B", "1", "L"],
|
||||||
|
"C:1": ["halt", "1", "S"]
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user