previousnext
ASTL homeSTL home
DFA DEFAULT


.

Extends

DFA

Class Specifications

name DFA_default
template parameters class DFA
constructor DFA_default(const Alphabet &def_letter, unsigned long n = 0)

File

dfa_default.h

Structure and complexity

Use the structure of its DFA template parameter.

improvements descriptions

DFA_default allows you to use a default character in yours automata. For example, if a state only has a transition by x and a transition by the default_letter, it will follow this last one for all letters, x excepted

improvements members

members parameters an return description
default_letter Alphabet identifier of the default method
delta0 State (State s, const Alphabet &a) Since delta1 now take into account the default letters, you should use this method when you do not want to use it.

Use Cases

This should be most usefull for people needing completes automata.