1 Star 0 Fork 0

iamohenry/turing-machine

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
TFunctionB.cpp 828 Bytes
一键复制 编辑 原始数据 按行查看 历史
iamohenry 提交于 2024-10-23 11:15 . test universal turing machine, runs ok
#include "TFunctionB.h"
#include "TFunctionAnf.h"
#include "TFunctionF.h"
TFunctionB::TFunctionB()
{
}
TFunctionB::~TFunctionB()
{
}
void TFunctionB::run()
{
TFunctionF tfF;
TFunctionB1 tfB1;
tfF.setFunc(&tfB1);
tfF.setFunb(&tfB1);
tfF.setSearchA('>');
/* origin symbol is '::',
since there is no '::' in ascII code,
so replace '::' with '>',
means: program running.
*/
tfF.run();
}
void TFunctionB::test()
{
reset();
prepareUMTestSample("DADDCRDAA;DAADDCCRDA>");
run();
}
void TFunctionB1::run()
{
TFunctionAnf tfAnf;
R();
sendUpdateSignal();
R();
sendUpdateSignal();
prSth(':');
sendUpdateSignal();
R();
sendUpdateSignal();
R();
sendUpdateSignal();
prSth('D');
sendUpdateSignal();
R();
sendUpdateSignal();
R();
sendUpdateSignal();
prSth('A');
sendUpdateSignal();
tfAnf.run();
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/iamohenry/turing-machine.git
git@gitee.com:iamohenry/turing-machine.git
iamohenry
turing-machine
turing-machine
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385