aboutsummaryrefslogtreecommitdiff
path: root/example/turing/src/machine.h
AgeCommit message (Collapse)Author
2015-03-15Updated _Turing machine_ comments to reflect tape loggingHEADmasterAdrian Kummerlaender
2015-03-14Implemented basic tape log printout in _Turing_ exampleAdrian Kummerlaender
* `machine::simulate` now returns a list of all tape states and corresponding head positions * rewrote some of the actual print logic in terms _TypeAsValue_
2015-02-22Improved `simulate` function of the Turing machine exampleAdrian Kummerlaender
* introduced `state::state_accessor` helper function and moved position logic into `updatePosition` * added `IsEqual` comparator and expressed other basic comparators in terms of itself
2015-02-21Moved Turing machine printing into separate functionAdrian Kummerlaender
2015-02-21Separated Turing machine implementation into componentsAdrian Kummerlaender
* i.e. separate namespaces and headers for _Tape_ and _State_ functions * `void` is now used as the `BLANK` field value