We consider the TRS containing the following rules:
b | → | a | (1) |
b | → | c | (2) |
c | → | h(b) | (3) |
c | → | d | (4) |
a | → | h(a) | (5) |
d | → | h(d) | (6) |
The underlying signature is as follows:
{b/0, a/0, c/0, h/1, d/0}t0 | = | b |
→ | a | |
→ | h(a) | |
= | t2 |
t0 | = | b |
→ | c | |
→ | d | |
= | t2 |
Automaton 1
final states:
{4}
transitions:
h(5) | → | 4 |
h(5) | → | 5 |
a | → | 5 |
Automaton 2
final states:
{1}
transitions:
d | → | 1 |
h(1) | → | 1 |