commit
601219eeeb
@ -20,8 +20,8 @@ def from_file(filename: str):
|
|||||||
if not action:
|
if not action:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
new_symbol, direction, new_state = re.split('([<|>|.])', action)
|
new_symbol, direction, *new_state = action
|
||||||
new_state = int(new_state) - 1
|
new_state = int(''.join(new_state)) - 1
|
||||||
|
|
||||||
movement = {
|
movement = {
|
||||||
'>': Movemement.R,
|
'>': Movemement.R,
|
||||||
@ -31,8 +31,6 @@ def from_file(filename: str):
|
|||||||
|
|
||||||
program.set(i, symbol, Action(new_state, new_symbol, movement))
|
program.set(i, symbol, Action(new_state, new_symbol, movement))
|
||||||
|
|
||||||
# program[symbol][i] = ([new_symbol, direction, new_state])
|
|
||||||
|
|
||||||
f.close()
|
f.close()
|
||||||
|
|
||||||
return program
|
return program
|
||||||
|
Loading…
Reference in New Issue
Block a user