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