State: None
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Configuration
Machine
{
"name": "unary_add",
"alphabet": [
"1",
"+",
"."
],
"blank": ".",
"states": [
"find_+",
"find_next_1_and_replace_with_+",
"replace_pivot_with_1",
"HALT"
],
"initial": "find_+",
"finals": [
"HALT"
],
"transitions": {
"find_+": [
{
"read": "1",
"write": "1",
"to_state": "find_+",
"action": "RIGHT"
},
{
"read": "+",
"write": ".",