app#( add( n , x ) , y ) | → | app#( x , y ) |
reverse#( add( n , x ) ) | → | app#( reverse( x ) , add( n , nil ) ) |
reverse#( add( n , x ) ) | → | reverse#( x ) |
shuffle#( add( n , x ) ) | → | shuffle#( reverse( x ) ) |
shuffle#( add( n , x ) ) | → | reverse#( x ) |
The dependency pairs are split into 3 component(s).
shuffle#( add( n , x ) ) | → | shuffle#( reverse( x ) ) |
Linear polynomial interpretation over the naturals
[reverse (x1) ] | = | x1 | |
[shuffle# (x1) ] | = | x1 | |
[app (x1, x2) ] | = | x1 + x2 | |
[add (x1, x2) ] | = | x1 + 2 | |
[nil] | = | 0 | |
[shuffle (x1) ] | = | 2 x1 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
none |
All dependency pairs have been removed.
reverse#( add( n , x ) ) | → | reverse#( x ) |
Linear polynomial interpretation over the naturals
[reverse (x1) ] | = | x1 | |
[reverse# (x1) ] | = | x1 | |
[app (x1, x2) ] | = | x1 + x2 | |
[add (x1, x2) ] | = | x1 + 1 | |
[nil] | = | 0 | |
[shuffle (x1) ] | = | x1 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
none |
All dependency pairs have been removed.
app#( add( n , x ) , y ) | → | app#( x , y ) |
Linear polynomial interpretation over the naturals
[reverse (x1) ] | = | x1 | |
[app (x1, x2) ] | = | x1 + x2 | |
[add (x1, x2) ] | = | x1 + 1 | |
[app# (x1, x2) ] | = | x1 | |
[nil] | = | 0 | |
[shuffle (x1) ] | = | x1 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
none |
All dependency pairs have been removed.