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