We consider the TRS containing the following rules:
| f(f(f(f(a)))) | → | a | (1) |
| c | → | h(f(f(c)),f(f(h(f(f(a)),h(h(b,h(c,c)),f(c)))))) | (2) |
| f(a) | → | c | (3) |
| b | → | f(a) | (4) |
| f(a) | → | f(c) | (5) |
The underlying signature is as follows:
{f/1, a/0, c/0, h/2, b/0}| t0 | = | f(f(f(b))) |
| → | f(f(f(f(a)))) | |
| → | f(f(f(c))) | |
| = | t2 |
| t0 | = | f(f(f(b))) |
| → | f(f(f(f(a)))) | |
| → | a | |
| = | t2 |
| π(a) | = | [] |
| π(b) | = | [] |
| π(c) | = | [] |
| π(f) | = | 1 |
| π(h) | = | [2] |