return convertStackInstruction(conv, originalTree);
}
public static ClusterHead convertStackInstruction(List<StackInstruction> program, ClusterHead originalTree) {
StackInterpreter interp = new StackInterpreter(program, originalTree.deepCopy());
return interp.run();
}
public static ClusterHead convertFlatGene(List<IntegerGene> assignments, ClusterHead originalTree) {
Map<Integer, Node> nodenumbers = new HashMap<Integer, Node>();