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