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