We consider the TRS containing the following rules:
a(x) | → | g(h(b(x))) | (1) |
a(x) | → | g(c(x)) | (2) |
b(x) | → | g(b(x)) | (3) |
g(a(x)) | → | g(h(a(x))) | (4) |
The underlying signature is as follows:
{a/1, g/1, h/1, b/1, c/1}t0 | = | a(f5) |
→ | g(h(b(f5))) | |
= | t1 |
t0 | = | a(f5) |
→ | g(c(f5)) | |
= | t1 |
Automaton 1
final states:
{12}
transitions:
f5 | → | 13 |
h(14) | → | 15 |
b(13) | → | 14 |
g(14) | → | 14 |
g(15) | → | 12 |
Automaton 2
final states:
{9}
transitions:
f5 | → | 10 |
c(10) | → | 11 |
g(11) | → | 9 |