active#( app( cons( X , XS ) , YS ) ) | → | cons#( X , app( XS , YS ) ) |
active#( app( cons( X , XS ) , YS ) ) | → | app#( XS , YS ) |
active#( from( X ) ) | → | cons#( X , from( s( X ) ) ) |
active#( from( X ) ) | → | from#( s( X ) ) |
active#( from( X ) ) | → | s#( X ) |
active#( zWadr( cons( X , XS ) , cons( Y , YS ) ) ) | → | cons#( app( Y , cons( X , nil ) ) , zWadr( XS , YS ) ) |
active#( zWadr( cons( X , XS ) , cons( Y , YS ) ) ) | → | app#( Y , cons( X , nil ) ) |
active#( zWadr( cons( X , XS ) , cons( Y , YS ) ) ) | → | cons#( X , nil ) |
active#( zWadr( cons( X , XS ) , cons( Y , YS ) ) ) | → | zWadr#( XS , YS ) |
active#( prefix( L ) ) | → | cons#( nil , zWadr( L , prefix( L ) ) ) |
active#( prefix( L ) ) | → | zWadr#( L , prefix( L ) ) |
active#( prefix( L ) ) | → | prefix#( L ) |
active#( app( X1 , X2 ) ) | → | app#( active( X1 ) , X2 ) |
active#( app( X1 , X2 ) ) | → | active#( X1 ) |
active#( app( X1 , X2 ) ) | → | app#( X1 , active( X2 ) ) |
active#( app( X1 , X2 ) ) | → | active#( X2 ) |
active#( cons( X1 , X2 ) ) | → | cons#( active( X1 ) , X2 ) |
active#( cons( X1 , X2 ) ) | → | active#( X1 ) |
active#( from( X ) ) | → | from#( active( X ) ) |
active#( from( X ) ) | → | active#( X ) |
active#( s( X ) ) | → | s#( active( X ) ) |
active#( s( X ) ) | → | active#( X ) |
active#( zWadr( X1 , X2 ) ) | → | zWadr#( active( X1 ) , X2 ) |
active#( zWadr( X1 , X2 ) ) | → | active#( X1 ) |
active#( zWadr( X1 , X2 ) ) | → | zWadr#( X1 , active( X2 ) ) |
active#( zWadr( X1 , X2 ) ) | → | active#( X2 ) |
active#( prefix( X ) ) | → | prefix#( active( X ) ) |
active#( prefix( X ) ) | → | active#( X ) |
app#( mark( X1 ) , X2 ) | → | app#( X1 , X2 ) |
app#( X1 , mark( X2 ) ) | → | app#( X1 , X2 ) |
cons#( mark( X1 ) , X2 ) | → | cons#( X1 , X2 ) |
from#( mark( X ) ) | → | from#( X ) |
s#( mark( X ) ) | → | s#( X ) |
zWadr#( mark( X1 ) , X2 ) | → | zWadr#( X1 , X2 ) |
zWadr#( X1 , mark( X2 ) ) | → | zWadr#( X1 , X2 ) |
prefix#( mark( X ) ) | → | prefix#( X ) |
proper#( app( X1 , X2 ) ) | → | app#( proper( X1 ) , proper( X2 ) ) |
proper#( app( X1 , X2 ) ) | → | proper#( X1 ) |
proper#( app( X1 , X2 ) ) | → | proper#( X2 ) |
proper#( cons( X1 , X2 ) ) | → | cons#( proper( X1 ) , proper( X2 ) ) |
proper#( cons( X1 , X2 ) ) | → | proper#( X1 ) |
proper#( cons( X1 , X2 ) ) | → | proper#( X2 ) |
proper#( from( X ) ) | → | from#( proper( X ) ) |
proper#( from( X ) ) | → | proper#( X ) |
proper#( s( X ) ) | → | s#( proper( X ) ) |
proper#( s( X ) ) | → | proper#( X ) |
proper#( zWadr( X1 , X2 ) ) | → | zWadr#( proper( X1 ) , proper( X2 ) ) |
proper#( zWadr( X1 , X2 ) ) | → | proper#( X1 ) |
proper#( zWadr( X1 , X2 ) ) | → | proper#( X2 ) |
proper#( prefix( X ) ) | → | prefix#( proper( X ) ) |
proper#( prefix( X ) ) | → | proper#( X ) |
app#( ok( X1 ) , ok( X2 ) ) | → | app#( X1 , X2 ) |
cons#( ok( X1 ) , ok( X2 ) ) | → | cons#( X1 , X2 ) |
from#( ok( X ) ) | → | from#( X ) |
s#( ok( X ) ) | → | s#( X ) |
zWadr#( ok( X1 ) , ok( X2 ) ) | → | zWadr#( X1 , X2 ) |
prefix#( ok( X ) ) | → | prefix#( X ) |
top#( mark( X ) ) | → | top#( proper( X ) ) |
top#( mark( X ) ) | → | proper#( X ) |
top#( ok( X ) ) | → | top#( active( X ) ) |
top#( ok( X ) ) | → | active#( X ) |
The dependency pairs are split into 9 component(s).
top#( ok( X ) ) | → | top#( active( X ) ) |
top#( mark( X ) ) | → | top#( proper( X ) ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | 2 x1 + 1 | |
[mark (x1) ] | = | x1 + 1 | |
[active (x1) ] | = | x1 | |
[nil] | = | 0 | |
[zWadr (x1, x2) ] | = | 2 x1 + 2 x2 + 2 | |
[cons (x1, x2) ] | = | x1 | |
[app (x1, x2) ] | = | 2 x1 + x2 + 1 | |
[s (x1) ] | = | 2 x1 | |
[top# (x1) ] | = | x1 | |
[prefix (x1) ] | = | x1 + 1 | |
[ok (x1) ] | = | x1 | |
[top (x1) ] | = | 0 | |
[proper (x1) ] | = | x1 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
top#( ok( X ) ) | → | top#( active( X ) ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | 3 x1 + 2 | |
[mark (x1) ] | = | 0 | |
[active (x1) ] | = | 2 x1 | |
[nil] | = | 1 | |
[zWadr (x1, x2) ] | = | 3 x1 + x2 | |
[cons (x1, x2) ] | = | 3 x1 + 1 | |
[app (x1, x2) ] | = | x1 | |
[s (x1) ] | = | x1 | |
[top# (x1) ] | = | 2 x1 | |
[prefix (x1) ] | = | x1 | |
[ok (x1) ] | = | 2 x1 + 1 | |
[top (x1) ] | = | 0 | |
[proper (x1) ] | = | 3 x1 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
none |
All dependency pairs have been removed.
active#( app( X1 , X2 ) ) | → | active#( X2 ) |
active#( app( X1 , X2 ) ) | → | active#( X1 ) |
active#( cons( X1 , X2 ) ) | → | active#( X1 ) |
active#( from( X ) ) | → | active#( X ) |
active#( s( X ) ) | → | active#( X ) |
active#( zWadr( X1 , X2 ) ) | → | active#( X1 ) |
active#( zWadr( X1 , X2 ) ) | → | active#( X2 ) |
active#( prefix( X ) ) | → | active#( X ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | x1 + 2 | |
[mark (x1) ] | = | x1 | |
[active# (x1) ] | = | x1 | |
[active (x1) ] | = | x1 | |
[zWadr (x1, x2) ] | = | x1 + 2 x2 | |
[nil] | = | 0 | |
[cons (x1, x2) ] | = | x1 | |
[app (x1, x2) ] | = | 2 x1 + x2 | |
[s (x1) ] | = | 2 x1 | |
[prefix (x1) ] | = | 2 x1 | |
[ok (x1) ] | = | 0 | |
[top (x1) ] | = | 0 | |
[proper (x1) ] | = | x1 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
active#( app( X1 , X2 ) ) | → | active#( X2 ) |
active#( app( X1 , X2 ) ) | → | active#( X1 ) |
active#( cons( X1 , X2 ) ) | → | active#( X1 ) |
active#( s( X ) ) | → | active#( X ) |
active#( zWadr( X1 , X2 ) ) | → | active#( X1 ) |
active#( zWadr( X1 , X2 ) ) | → | active#( X2 ) |
active#( prefix( X ) ) | → | active#( X ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | 0 | |
[mark (x1) ] | = | 0 | |
[active# (x1) ] | = | 2 x1 | |
[active (x1) ] | = | 2 x1 | |
[zWadr (x1, x2) ] | = | x1 + x2 + 2 | |
[nil] | = | 3 | |
[cons (x1, x2) ] | = | x1 + x2 | |
[app (x1, x2) ] | = | x1 + 3 x2 | |
[s (x1) ] | = | 2 x1 | |
[prefix (x1) ] | = | 2 x1 | |
[ok (x1) ] | = | 0 | |
[top (x1) ] | = | 0 | |
[proper (x1) ] | = | x1 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
active#( app( X1 , X2 ) ) | → | active#( X2 ) |
active#( app( X1 , X2 ) ) | → | active#( X1 ) |
active#( cons( X1 , X2 ) ) | → | active#( X1 ) |
active#( s( X ) ) | → | active#( X ) |
active#( prefix( X ) ) | → | active#( X ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | x1 | |
[mark (x1) ] | = | 0 | |
[active# (x1) ] | = | 3 x1 | |
[active (x1) ] | = | 2 x1 | |
[nil] | = | 3 | |
[zWadr (x1, x2) ] | = | 2 x1 + 1 | |
[cons (x1, x2) ] | = | 3 x1 + 2 x2 | |
[app (x1, x2) ] | = | 2 x1 + 3 x2 + 3 | |
[s (x1) ] | = | 2 x1 + 2 | |
[prefix (x1) ] | = | 2 x1 + 3 | |
[ok (x1) ] | = | x1 | |
[top (x1) ] | = | 0 | |
[proper (x1) ] | = | 2 x1 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
active#( cons( X1 , X2 ) ) | → | active#( X1 ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | 1 | |
[mark (x1) ] | = | 0 | |
[active# (x1) ] | = | 2 x1 | |
[active (x1) ] | = | x1 | |
[nil] | = | 2 | |
[zWadr (x1, x2) ] | = | x1 | |
[cons (x1, x2) ] | = | x1 + 1 | |
[app (x1, x2) ] | = | x1 + x2 + 1 | |
[s (x1) ] | = | 1 | |
[prefix (x1) ] | = | 1 | |
[ok (x1) ] | = | 0 | |
[top (x1) ] | = | 0 | |
[proper (x1) ] | = | 2 x1 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
none |
All dependency pairs have been removed.
proper#( app( X1 , X2 ) ) | → | proper#( X2 ) |
proper#( app( X1 , X2 ) ) | → | proper#( X1 ) |
proper#( cons( X1 , X2 ) ) | → | proper#( X1 ) |
proper#( cons( X1 , X2 ) ) | → | proper#( X2 ) |
proper#( from( X ) ) | → | proper#( X ) |
proper#( s( X ) ) | → | proper#( X ) |
proper#( zWadr( X1 , X2 ) ) | → | proper#( X1 ) |
proper#( zWadr( X1 , X2 ) ) | → | proper#( X2 ) |
proper#( prefix( X ) ) | → | proper#( X ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | 2 x1 + 1 | |
[mark (x1) ] | = | 0 | |
[active (x1) ] | = | 2 x1 | |
[zWadr (x1, x2) ] | = | 3 x1 + x2 | |
[nil] | = | 0 | |
[cons (x1, x2) ] | = | x1 + 2 x2 + 2 | |
[proper# (x1) ] | = | 2 x1 | |
[app (x1, x2) ] | = | 2 x1 + x2 | |
[s (x1) ] | = | 2 x1 | |
[prefix (x1) ] | = | x1 | |
[ok (x1) ] | = | x1 | |
[top (x1) ] | = | 0 | |
[proper (x1) ] | = | x1 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
proper#( app( X1 , X2 ) ) | → | proper#( X2 ) |
proper#( app( X1 , X2 ) ) | → | proper#( X1 ) |
proper#( s( X ) ) | → | proper#( X ) |
proper#( zWadr( X1 , X2 ) ) | → | proper#( X1 ) |
proper#( zWadr( X1 , X2 ) ) | → | proper#( X2 ) |
proper#( prefix( X ) ) | → | proper#( X ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | 3 | |
[mark (x1) ] | = | 0 | |
[active (x1) ] | = | 2 x1 | |
[zWadr (x1, x2) ] | = | 2 x1 + x2 + 2 | |
[nil] | = | 0 | |
[cons (x1, x2) ] | = | 3 x1 + 2 x2 + 3 | |
[proper# (x1) ] | = | 2 x1 | |
[app (x1, x2) ] | = | 3 x1 + 2 x2 | |
[s (x1) ] | = | x1 | |
[prefix (x1) ] | = | 2 x1 + 3 | |
[ok (x1) ] | = | x1 | |
[top (x1) ] | = | 0 | |
[proper (x1) ] | = | 2 x1 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
proper#( app( X1 , X2 ) ) | → | proper#( X2 ) |
proper#( app( X1 , X2 ) ) | → | proper#( X1 ) |
proper#( s( X ) ) | → | proper#( X ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | 3 x1 | |
[mark (x1) ] | = | 0 | |
[active (x1) ] | = | 2 x1 | |
[nil] | = | 1 | |
[zWadr (x1, x2) ] | = | 3 x1 | |
[cons (x1, x2) ] | = | 3 x1 | |
[proper# (x1) ] | = | 2 x1 | |
[app (x1, x2) ] | = | x1 + 2 x2 + 3 | |
[s (x1) ] | = | 2 x1 | |
[prefix (x1) ] | = | 2 | |
[ok (x1) ] | = | 0 | |
[top (x1) ] | = | 0 | |
[proper (x1) ] | = | x1 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
proper#( s( X ) ) | → | proper#( X ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | x1 | |
[mark (x1) ] | = | 0 | |
[active (x1) ] | = | 2 x1 | |
[nil] | = | 2 | |
[zWadr (x1, x2) ] | = | x1 | |
[cons (x1, x2) ] | = | 2 x1 | |
[proper# (x1) ] | = | x1 | |
[app (x1, x2) ] | = | 2 | |
[s (x1) ] | = | 2 x1 + 2 | |
[prefix (x1) ] | = | 2 x1 | |
[ok (x1) ] | = | 2 | |
[top (x1) ] | = | 0 | |
[proper (x1) ] | = | 2 x1 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
none |
All dependency pairs have been removed.
app#( X1 , mark( X2 ) ) | → | app#( X1 , X2 ) |
app#( mark( X1 ) , X2 ) | → | app#( X1 , X2 ) |
app#( ok( X1 ) , ok( X2 ) ) | → | app#( X1 , X2 ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | 2 x1 + 3 | |
[mark (x1) ] | = | x1 | |
[active (x1) ] | = | 2 x1 | |
[app# (x1, x2) ] | = | x1 + x2 | |
[nil] | = | 0 | |
[zWadr (x1, x2) ] | = | x1 | |
[cons (x1, x2) ] | = | x1 | |
[app (x1, x2) ] | = | x1 | |
[s (x1) ] | = | 2 x1 + 1 | |
[prefix (x1) ] | = | x1 | |
[ok (x1) ] | = | x1 + 1 | |
[top (x1) ] | = | 0 | |
[proper (x1) ] | = | 2 x1 + 1 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
app#( X1 , mark( X2 ) ) | → | app#( X1 , X2 ) |
app#( mark( X1 ) , X2 ) | → | app#( X1 , X2 ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | x1 | |
[mark (x1) ] | = | x1 + 3 | |
[active (x1) ] | = | x1 + 3 | |
[app# (x1, x2) ] | = | 3 x1 + x2 | |
[nil] | = | 0 | |
[zWadr (x1, x2) ] | = | x1 + x2 | |
[cons (x1, x2) ] | = | x1 | |
[app (x1, x2) ] | = | x1 + x2 | |
[s (x1) ] | = | x1 | |
[prefix (x1) ] | = | x1 | |
[ok (x1) ] | = | 0 | |
[top (x1) ] | = | 0 | |
[proper (x1) ] | = | 0 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
none |
All dependency pairs have been removed.
cons#( ok( X1 ) , ok( X2 ) ) | → | cons#( X1 , X2 ) |
cons#( mark( X1 ) , X2 ) | → | cons#( X1 , X2 ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | 2 x1 | |
[mark (x1) ] | = | 0 | |
[active (x1) ] | = | 2 x1 | |
[nil] | = | 2 | |
[zWadr (x1, x2) ] | = | 2 x1 + 1 | |
[cons (x1, x2) ] | = | 2 x1 | |
[cons# (x1, x2) ] | = | x1 | |
[app (x1, x2) ] | = | 3 x1 + 3 x2 | |
[s (x1) ] | = | x1 | |
[prefix (x1) ] | = | 2 x1 | |
[ok (x1) ] | = | 2 x1 + 1 | |
[top (x1) ] | = | 0 | |
[proper (x1) ] | = | 3 x1 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
cons#( mark( X1 ) , X2 ) | → | cons#( X1 , X2 ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | 2 x1 + 2 | |
[mark (x1) ] | = | x1 + 1 | |
[active (x1) ] | = | 2 x1 | |
[nil] | = | 0 | |
[zWadr (x1, x2) ] | = | 2 x1 + x2 + 1 | |
[cons (x1, x2) ] | = | 2 x1 + 3 | |
[cons# (x1, x2) ] | = | 2 x1 | |
[app (x1, x2) ] | = | 2 x1 + 2 x2 + 2 | |
[s (x1) ] | = | 2 x1 | |
[prefix (x1) ] | = | x1 + 3 | |
[ok (x1) ] | = | 0 | |
[top (x1) ] | = | 0 | |
[proper (x1) ] | = | 2 x1 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
none |
All dependency pairs have been removed.
from#( ok( X ) ) | → | from#( X ) |
from#( mark( X ) ) | → | from#( X ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | x1 | |
[mark (x1) ] | = | x1 | |
[active (x1) ] | = | 2 x1 | |
[from# (x1) ] | = | 2 x1 | |
[nil] | = | 0 | |
[zWadr (x1, x2) ] | = | x1 | |
[cons (x1, x2) ] | = | x1 | |
[app (x1, x2) ] | = | 2 x1 + 1 | |
[s (x1) ] | = | x1 | |
[prefix (x1) ] | = | x1 | |
[ok (x1) ] | = | 2 x1 + 2 | |
[top (x1) ] | = | 0 | |
[proper (x1) ] | = | 3 x1 + 2 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
from#( mark( X ) ) | → | from#( X ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | x1 | |
[mark (x1) ] | = | x1 + 1 | |
[active (x1) ] | = | 2 x1 + 2 | |
[from# (x1) ] | = | x1 | |
[nil] | = | 0 | |
[zWadr (x1, x2) ] | = | x1 + x2 | |
[cons (x1, x2) ] | = | x1 | |
[app (x1, x2) ] | = | x1 + x2 | |
[s (x1) ] | = | x1 | |
[prefix (x1) ] | = | x1 | |
[ok (x1) ] | = | 0 | |
[top (x1) ] | = | 0 | |
[proper (x1) ] | = | 0 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
none |
All dependency pairs have been removed.
s#( ok( X ) ) | → | s#( X ) |
s#( mark( X ) ) | → | s#( X ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | x1 | |
[mark (x1) ] | = | x1 | |
[active (x1) ] | = | 2 x1 | |
[nil] | = | 0 | |
[zWadr (x1, x2) ] | = | x1 | |
[cons (x1, x2) ] | = | x1 | |
[s# (x1) ] | = | 2 x1 | |
[app (x1, x2) ] | = | 2 x1 + 1 | |
[s (x1) ] | = | x1 | |
[prefix (x1) ] | = | x1 | |
[ok (x1) ] | = | 2 x1 + 2 | |
[top (x1) ] | = | 0 | |
[proper (x1) ] | = | 3 x1 + 2 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
s#( mark( X ) ) | → | s#( X ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | x1 | |
[mark (x1) ] | = | x1 + 1 | |
[active (x1) ] | = | 2 x1 + 2 | |
[nil] | = | 0 | |
[zWadr (x1, x2) ] | = | x1 + x2 | |
[cons (x1, x2) ] | = | x1 | |
[s# (x1) ] | = | x1 | |
[app (x1, x2) ] | = | x1 + x2 | |
[s (x1) ] | = | x1 | |
[prefix (x1) ] | = | x1 | |
[ok (x1) ] | = | 0 | |
[top (x1) ] | = | 0 | |
[proper (x1) ] | = | 0 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
none |
All dependency pairs have been removed.
zWadr#( X1 , mark( X2 ) ) | → | zWadr#( X1 , X2 ) |
zWadr#( mark( X1 ) , X2 ) | → | zWadr#( X1 , X2 ) |
zWadr#( ok( X1 ) , ok( X2 ) ) | → | zWadr#( X1 , X2 ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | 2 x1 + 3 | |
[mark (x1) ] | = | x1 | |
[active (x1) ] | = | 2 x1 | |
[zWadr# (x1, x2) ] | = | x1 + x2 | |
[nil] | = | 0 | |
[zWadr (x1, x2) ] | = | x1 | |
[cons (x1, x2) ] | = | x1 | |
[app (x1, x2) ] | = | x1 | |
[s (x1) ] | = | 2 x1 + 1 | |
[prefix (x1) ] | = | x1 | |
[ok (x1) ] | = | x1 + 1 | |
[top (x1) ] | = | 0 | |
[proper (x1) ] | = | 2 x1 + 1 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
zWadr#( X1 , mark( X2 ) ) | → | zWadr#( X1 , X2 ) |
zWadr#( mark( X1 ) , X2 ) | → | zWadr#( X1 , X2 ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | x1 | |
[mark (x1) ] | = | x1 + 3 | |
[active (x1) ] | = | x1 + 3 | |
[zWadr# (x1, x2) ] | = | 3 x1 + x2 | |
[nil] | = | 0 | |
[zWadr (x1, x2) ] | = | x1 + x2 | |
[cons (x1, x2) ] | = | x1 | |
[app (x1, x2) ] | = | x1 + x2 | |
[s (x1) ] | = | x1 | |
[prefix (x1) ] | = | x1 | |
[ok (x1) ] | = | 0 | |
[top (x1) ] | = | 0 | |
[proper (x1) ] | = | 0 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
none |
All dependency pairs have been removed.
prefix#( ok( X ) ) | → | prefix#( X ) |
prefix#( mark( X ) ) | → | prefix#( X ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | x1 | |
[mark (x1) ] | = | x1 | |
[active (x1) ] | = | 2 x1 | |
[nil] | = | 0 | |
[zWadr (x1, x2) ] | = | x1 | |
[cons (x1, x2) ] | = | x1 | |
[app (x1, x2) ] | = | 2 x1 + 1 | |
[s (x1) ] | = | x1 | |
[prefix (x1) ] | = | x1 | |
[ok (x1) ] | = | 2 x1 + 2 | |
[top (x1) ] | = | 0 | |
[prefix# (x1) ] | = | 2 x1 | |
[proper (x1) ] | = | 3 x1 + 2 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
prefix#( mark( X ) ) | → | prefix#( X ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | x1 | |
[mark (x1) ] | = | x1 + 1 | |
[active (x1) ] | = | 2 x1 + 2 | |
[nil] | = | 0 | |
[zWadr (x1, x2) ] | = | x1 + x2 | |
[cons (x1, x2) ] | = | x1 | |
[app (x1, x2) ] | = | x1 + x2 | |
[s (x1) ] | = | x1 | |
[prefix (x1) ] | = | x1 | |
[ok (x1) ] | = | 0 | |
[top (x1) ] | = | 0 | |
[prefix# (x1) ] | = | x1 | |
[proper (x1) ] | = | 0 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
none |
All dependency pairs have been removed.