Skip to content
Snippets Groups Projects
Commit 0e3feb79 authored by Martin Žák's avatar Martin Žák
Browse files

TuringMachine allows epsilon transitions

parent 0c6cf752
No related branches found
No related tags found
No related merge requests found
......@@ -95,8 +95,10 @@ void TM::addTransition(const TransitionTM& transition) {
throw AutomatonException("State \"" + transition.getFrom().getName() + "\" doesn't exist.");
}
 
if (tapeAlphabet.find(transition.getInput()) == tapeAlphabet.end()) {
throw AutomatonException("Tape symbol \"" + transition.getInput().getSymbol() + "\" doesn't exist.");
if (transition.getInput().getSymbol() != "") {
if (tapeAlphabet.find(transition.getInput()) == tapeAlphabet.end()) {
throw AutomatonException("Tape symbol \"" + transition.getInput().getSymbol() + "\" doesn't exist.");
}
}
 
if (states.find(transition.getTo()) == states.end()) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment