Turing turing = new Turing(term, init, "*");
turing.initializeTape(this.getInputAlphabet().toString().replace("[", "").replace("]", "").replace(", ", "")
+ this.getInputAlphabet().toString().replace("[", "").replace("]", "").replace(", ", ""));
this.transitions.forEach(trans -> turing.addTransition(
trans.getSource(),
trans.getLabel(),
trans.getDestination(),
trans.getLabel(),
1));