- delta(DFA.State, char) - Method in class work.DFA
-
This method determines and returns the next state of automaton for given state and input char.
- delta(NFA.State, char) - Method in class work.NFA
-
This method determines and returns the next state of automaton for given state and input char.
- delta(char, char) - Method in class work.PDA
-
This abstract method determines and returns the next state of automaton for given char inputs.
- delta(char, char) - Method in class work.PDA1
-
This method determines and returns the next state of automaton for given char inputs.
- DFA - Class in work
-
This class extends Automaton abstract class and work as a Deterministic Finite Automaton for (1+0)*10.
- DFA() - Constructor for class work.DFA
-
- dfa - Static variable in class work.DFA
-
An instance of DFA to test.