improved error messages for TM and PDA's

This commit is contained in:
ParkerTenBroeck 2026-01-11 21:35:39 -05:00
parent c06a0a0147
commit d6e4fff782
12 changed files with 817 additions and 537 deletions

View file

@ -189,7 +189,7 @@ export type Tm = {
type: "tm";
initial_state: State;
initial_tape: Symbol;
blank_symbol: Symbol;
states: Map<State, StateInfo>;
symbols: Map<Symbol, SymbolInfo>;
alphabet: Map<Letter, LetterInfo>;