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