Created
December 31, 2018 07:42
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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