Skip to content

Instantly share code, notes, and snippets.

@RQF7
Created December 31, 2018 07:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RQF7/fce03e47cafcdb8590c2bfdb4688c8d8 to your computer and use it in GitHub Desktop.
Save RQF7/fce03e47cafcdb8590c2bfdb4688c8d8 to your computer and use it in GitHub Desktop.
The duplicator Turing machine for CULET. http://www.comunidad.escom.ipn.mx/ALIROB/CULET
{
"states": [
"s1",
"s2",
"s3",
"s4",
"s5",
"s6"
],
"initial_state": "s1",
"symbols": [
"1",
"0"
],
"rules": [
{
"state": "s1",
"symbol": "1",
"new_state": "s2",
"new_symbol": "1",
"direction": "R"
},
{
"state": "s1",
"symbol": "0",
"new_state": "s5",
"new_symbol": "0",
"direction": "L"
},
{
"state": "s2",
"symbol": "1",
"new_state": "s1",
"new_symbol": "1",
"direction": "R"
},
{
"state": "s2",
"symbol": "0",
"new_state": "s3",
"new_symbol": "1",
"direction": "L"
},
{
"state": "s3",
"symbol": "1",
"new_state": "s4",
"new_symbol": "1",
"direction": "L"
},
{
"state": "s3",
"symbol": "0",
"new_state": "s2",
"new_symbol": "1",
"direction": "R"
},
{
"state": "s4",
"symbol": "1",
"new_state": "s3",
"new_symbol": "1",
"direction": "L"
},
{
"state": "s4",
"symbol": "0",
"new_state": "s3",
"new_symbol": "1",
"direction": "L"
},
{
"state": "s5",
"symbol": "1",
"new_state": "s6",
"new_symbol": "0",
"direction": "L"
},
{
"state": "s5",
"symbol": "0",
"new_state": "s5",
"new_symbol": "0",
"direction": "R"
},
{
"state": "s6",
"symbol": "1",
"new_state": "s5",
"new_symbol": "1",
"direction": "L"
},
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment