We consider the TRS containing the following rules:
a | → | h(a) | (1) |
a | → | f(c) | (2) |
f(x) | → | h(g(x)) | (3) |
h(x) | → | h(g(x)) | (4) |
The underlying signature is as follows:
{a/0, h/1, f/1, c/0, g/1}t0 | = | a |
→ | h(a) | |
→ | h(f(c)) | |
= | t2 |
t0 | = | a |
→ | f(c) | |
→ | h(g(c)) | |
= | t2 |
Automaton 1
final states:
{8}
transitions:
g(53) | → | 53 |
g(9) | → | 53 |
g(10) | → | 10 |
f(9) | → | 10 |
c | → | 9 |
h(53) | → | 10 |
h(10) | → | 8 |
Automaton 2
final states:
{14}
transitions:
g(16) | → | 16 |
g(15) | → | 16 |
c | → | 15 |
h(16) | → | 14 |