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