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