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