Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/falkz/turingmaschine
A turing machine simulator
https://github.com/falkz/turingmaschine
Last synced: 4 days ago
JSON representation
A turing machine simulator
- Host: GitHub
- URL: https://github.com/falkz/turingmaschine
- Owner: FalkZ
- Created: 2020-05-02T16:41:43.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-04-11T19:07:46.000Z (7 months ago)
- Last Synced: 2024-04-12T00:17:51.687Z (7 months ago)
- Language: TypeScript
- Homepage: https://turingmaschine.netlify.app/
- Size: 894 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# [Turingmachine Simulator](https://turingmaschine.netlify.app/)
This Webapp encodes a human readable format of a turning machine e.g.:
```
Q0, 0, Q1, 1, R // If in state Q0, and 0 read from the band, goto state Q1, write 1 to the mand, move head to the right
```Then runs the encoded machine ether step by step or until end state Q1 is reached. The simulator also shows a visualization of all the states. The demo shows an binary multiplication implmented as a turing machine.