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