rev#( ls ) | → | r1#( ls , empty ) |
r1#( cons( x , k ) , a ) | → | r1#( k , cons( x , a ) ) |
The dependency pairs are split into 1 component(s).
r1#( cons( x , k ) , a ) | → | r1#( k , cons( x , a ) ) |
Linear polynomial interpretation over the naturals
[rev (x1) ] | = | 2 x1 + 3 | |
[empty] | = | 0 | |
[cons (x1, x2) ] | = | x1 + 3 | |
[r1 (x1, x2) ] | = | 2 x1 + x2 | |
[r1# (x1, x2) ] | = | 3 x1 + x2 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
none |
All dependency pairs have been removed.