active#( fst( s( X ) , cons( Y , Z ) ) ) | → | cons#( Y , fst( X , Z ) ) |
active#( fst( s( X ) , cons( Y , Z ) ) ) | → | fst#( X , Z ) |
active#( from( X ) ) | → | cons#( X , from( s( X ) ) ) |
active#( from( X ) ) | → | from#( s( X ) ) |
active#( from( X ) ) | → | s#( X ) |
active#( add( s( X ) , Y ) ) | → | s#( add( X , Y ) ) |
active#( add( s( X ) , Y ) ) | → | add#( X , Y ) |
active#( len( cons( X , Z ) ) ) | → | s#( len( Z ) ) |
active#( len( cons( X , Z ) ) ) | → | len#( Z ) |
active#( cons( X1 , X2 ) ) | → | cons#( active( X1 ) , X2 ) |
active#( cons( X1 , X2 ) ) | → | active#( X1 ) |
active#( fst( X1 , X2 ) ) | → | fst#( active( X1 ) , X2 ) |
active#( fst( X1 , X2 ) ) | → | active#( X1 ) |
active#( fst( X1 , X2 ) ) | → | fst#( X1 , active( X2 ) ) |
active#( fst( X1 , X2 ) ) | → | active#( X2 ) |
active#( from( X ) ) | → | from#( active( X ) ) |
active#( from( X ) ) | → | active#( X ) |
active#( add( X1 , X2 ) ) | → | add#( active( X1 ) , X2 ) |
active#( add( X1 , X2 ) ) | → | active#( X1 ) |
active#( add( X1 , X2 ) ) | → | add#( X1 , active( X2 ) ) |
active#( add( X1 , X2 ) ) | → | active#( X2 ) |
active#( len( X ) ) | → | len#( active( X ) ) |
active#( len( X ) ) | → | active#( X ) |
cons#( mark( X1 ) , X2 ) | → | cons#( X1 , X2 ) |
fst#( mark( X1 ) , X2 ) | → | fst#( X1 , X2 ) |
fst#( X1 , mark( X2 ) ) | → | fst#( X1 , X2 ) |
from#( mark( X ) ) | → | from#( X ) |
add#( mark( X1 ) , X2 ) | → | add#( X1 , X2 ) |
add#( X1 , mark( X2 ) ) | → | add#( X1 , X2 ) |
len#( mark( X ) ) | → | len#( X ) |
proper#( s( X ) ) | → | s#( proper( X ) ) |
proper#( s( X ) ) | → | proper#( X ) |
proper#( cons( X1 , X2 ) ) | → | cons#( proper( X1 ) , proper( X2 ) ) |
proper#( cons( X1 , X2 ) ) | → | proper#( X1 ) |
proper#( cons( X1 , X2 ) ) | → | proper#( X2 ) |
proper#( fst( X1 , X2 ) ) | → | fst#( proper( X1 ) , proper( X2 ) ) |
proper#( fst( X1 , X2 ) ) | → | proper#( X1 ) |
proper#( fst( X1 , X2 ) ) | → | proper#( X2 ) |
proper#( from( X ) ) | → | from#( proper( X ) ) |
proper#( from( X ) ) | → | proper#( X ) |
proper#( add( X1 , X2 ) ) | → | add#( proper( X1 ) , proper( X2 ) ) |
proper#( add( X1 , X2 ) ) | → | proper#( X1 ) |
proper#( add( X1 , X2 ) ) | → | proper#( X2 ) |
proper#( len( X ) ) | → | len#( proper( X ) ) |
proper#( len( X ) ) | → | proper#( X ) |
s#( ok( X ) ) | → | s#( X ) |
cons#( ok( X1 ) , ok( X2 ) ) | → | cons#( X1 , X2 ) |
fst#( ok( X1 ) , ok( X2 ) ) | → | fst#( X1 , X2 ) |
from#( ok( X ) ) | → | from#( X ) |
add#( ok( X1 ) , ok( X2 ) ) | → | add#( X1 , X2 ) |
len#( ok( X ) ) | → | len#( 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) ] | = | x1 + 2 | |
[fst (x1, x2) ] | = | x1 + x2 + 3 | |
[mark (x1) ] | = | x1 + 1 | |
[active (x1) ] | = | x1 | |
[0] | = | 0 | |
[nil] | = | 2 | |
[cons (x1, x2) ] | = | x1 + 1 | |
[len (x1) ] | = | x1 | |
[add (x1, x2) ] | = | 2 x1 + 2 x2 + 1 | |
[s (x1) ] | = | 0 | |
[top# (x1) ] | = | x1 | |
[ok (x1) ] | = | x1 | |
[top (x1) ] | = | 2 x1 | |
[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) ] | = | x1 | |
[fst (x1, x2) ] | = | x1 + x2 + 2 | |
[mark (x1) ] | = | 0 | |
[active (x1) ] | = | x1 + 1 | |
[0] | = | 0 | |
[nil] | = | 0 | |
[cons (x1, x2) ] | = | 3 x1 + 3 | |
[len (x1) ] | = | x1 | |
[add (x1, x2) ] | = | x1 | |
[s (x1) ] | = | 2 x1 + 2 | |
[top# (x1) ] | = | 3 x1 | |
[ok (x1) ] | = | 2 x1 + 3 | |
[top (x1) ] | = | 0 | |
[proper (x1) ] | = | 3 x1 + 3 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
none |
All dependency pairs have been removed.
active#( fst( X1 , X2 ) ) | → | active#( X1 ) |
active#( cons( X1 , X2 ) ) | → | active#( X1 ) |
active#( fst( X1 , X2 ) ) | → | active#( X2 ) |
active#( from( X ) ) | → | active#( X ) |
active#( add( X1 , X2 ) ) | → | active#( X1 ) |
active#( add( X1 , X2 ) ) | → | active#( X2 ) |
active#( len( X ) ) | → | active#( X ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | 2 x1 | |
[fst (x1, x2) ] | = | 2 x1 + 2 x2 | |
[mark (x1) ] | = | 0 | |
[active# (x1) ] | = | 2 x1 | |
[active (x1) ] | = | 2 x1 | |
[0] | = | 0 | |
[nil] | = | 0 | |
[cons (x1, x2) ] | = | x1 + 2 | |
[len (x1) ] | = | x1 | |
[add (x1, x2) ] | = | 2 x1 + 2 x2 | |
[s (x1) ] | = | 0 | |
[ok (x1) ] | = | x1 | |
[top (x1) ] | = | 0 | |
[proper (x1) ] | = | x1 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
active#( fst( X1 , X2 ) ) | → | active#( X1 ) |
active#( fst( X1 , X2 ) ) | → | active#( X2 ) |
active#( from( X ) ) | → | active#( X ) |
active#( add( X1 , X2 ) ) | → | active#( X1 ) |
active#( add( X1 , X2 ) ) | → | active#( X2 ) |
active#( len( X ) ) | → | active#( X ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | 2 x1 | |
[fst (x1, x2) ] | = | 2 x1 + 2 x2 | |
[mark (x1) ] | = | 0 | |
[active# (x1) ] | = | 2 x1 | |
[active (x1) ] | = | 2 x1 | |
[0] | = | 3 | |
[nil] | = | 0 | |
[cons (x1, x2) ] | = | 0 | |
[len (x1) ] | = | 2 x1 | |
[add (x1, x2) ] | = | x1 + 2 x2 + 1 | |
[s (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 |
active#( fst( X1 , X2 ) ) | → | active#( X1 ) |
active#( fst( X1 , X2 ) ) | → | active#( X2 ) |
active#( from( X ) ) | → | active#( X ) |
active#( len( X ) ) | → | active#( X ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | x1 + 2 | |
[fst (x1, x2) ] | = | x1 + 2 x2 + 2 | |
[mark (x1) ] | = | x1 | |
[active# (x1) ] | = | 2 x1 | |
[active (x1) ] | = | 2 x1 + 2 | |
[0] | = | 1 | |
[nil] | = | 2 | |
[cons (x1, x2) ] | = | x1 | |
[len (x1) ] | = | x1 + 1 | |
[add (x1, x2) ] | = | 2 x1 + 3 | |
[s (x1) ] | = | 2 x1 | |
[ok (x1) ] | = | 1 | |
[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#( cons( X1 , X2 ) ) | → | proper#( X1 ) |
proper#( s( X ) ) | → | proper#( X ) |
proper#( cons( X1 , X2 ) ) | → | proper#( X2 ) |
proper#( fst( X1 , X2 ) ) | → | proper#( X1 ) |
proper#( fst( X1 , X2 ) ) | → | proper#( X2 ) |
proper#( from( X ) ) | → | proper#( X ) |
proper#( add( X1 , X2 ) ) | → | proper#( X1 ) |
proper#( add( X1 , X2 ) ) | → | proper#( X2 ) |
proper#( len( X ) ) | → | proper#( X ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | 2 x1 | |
[fst (x1, x2) ] | = | 2 x1 + x2 | |
[mark (x1) ] | = | 0 | |
[active (x1) ] | = | 2 x1 | |
[0] | = | 1 | |
[nil] | = | 1 | |
[cons (x1, x2) ] | = | x1 + x2 | |
[len (x1) ] | = | x1 | |
[proper# (x1) ] | = | 2 x1 | |
[add (x1, x2) ] | = | x1 + 3 x2 + 1 | |
[s (x1) ] | = | 2 x1 | |
[ok (x1) ] | = | 0 | |
[top (x1) ] | = | 0 | |
[proper (x1) ] | = | 2 x1 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
proper#( cons( X1 , X2 ) ) | → | proper#( X1 ) |
proper#( s( X ) ) | → | proper#( X ) |
proper#( cons( X1 , X2 ) ) | → | proper#( X2 ) |
proper#( fst( X1 , X2 ) ) | → | proper#( X1 ) |
proper#( fst( X1 , X2 ) ) | → | proper#( X2 ) |
proper#( from( X ) ) | → | proper#( X ) |
proper#( len( X ) ) | → | proper#( X ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | 2 x1 | |
[fst (x1, x2) ] | = | 2 x1 + x2 | |
[mark (x1) ] | = | 0 | |
[active (x1) ] | = | 2 x1 | |
[0] | = | 2 | |
[nil] | = | 3 | |
[cons (x1, x2) ] | = | 2 x1 + x2 | |
[len (x1) ] | = | x1 + 1 | |
[proper# (x1) ] | = | x1 | |
[add (x1, x2) ] | = | 0 | |
[s (x1) ] | = | x1 | |
[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#( cons( X1 , X2 ) ) | → | proper#( X1 ) |
proper#( s( X ) ) | → | proper#( X ) |
proper#( cons( X1 , X2 ) ) | → | proper#( X2 ) |
proper#( fst( X1 , X2 ) ) | → | proper#( X1 ) |
proper#( fst( X1 , X2 ) ) | → | proper#( X2 ) |
proper#( from( X ) ) | → | proper#( X ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | x1 | |
[fst (x1, x2) ] | = | x1 + x2 + 1 | |
[mark (x1) ] | = | 0 | |
[active (x1) ] | = | 2 x1 | |
[0] | = | 0 | |
[nil] | = | 0 | |
[cons (x1, x2) ] | = | 2 x1 + x2 | |
[len (x1) ] | = | 0 | |
[proper# (x1) ] | = | 2 x1 | |
[add (x1, x2) ] | = | 2 x1 + 1 | |
[s (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 |
proper#( cons( X1 , X2 ) ) | → | proper#( X1 ) |
proper#( cons( X1 , X2 ) ) | → | proper#( X2 ) |
proper#( from( X ) ) | → | proper#( X ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | 2 x1 | |
[fst (x1, x2) ] | = | x1 | |
[mark (x1) ] | = | 0 | |
[active (x1) ] | = | 2 x1 | |
[0] | = | 0 | |
[nil] | = | 0 | |
[cons (x1, x2) ] | = | x1 + x2 + 1 | |
[len (x1) ] | = | 0 | |
[proper# (x1) ] | = | x1 | |
[add (x1, x2) ] | = | 2 x1 + x2 | |
[s (x1) ] | = | 2 x1 + 1 | |
[ok (x1) ] | = | 0 | |
[top (x1) ] | = | 0 | |
[proper (x1) ] | = | x1 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
proper#( from( X ) ) | → | proper#( X ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | x1 + 1 | |
[fst (x1, x2) ] | = | x1 + 3 x2 | |
[mark (x1) ] | = | 0 | |
[active (x1) ] | = | x1 | |
[0] | = | 1 | |
[nil] | = | 1 | |
[cons (x1, x2) ] | = | 2 x1 + 1 | |
[len (x1) ] | = | 0 | |
[proper# (x1) ] | = | x1 | |
[add (x1, x2) ] | = | 3 x1 | |
[s (x1) ] | = | 0 | |
[ok (x1) ] | = | 0 | |
[top (x1) ] | = | 0 | |
[proper (x1) ] | = | x1 | |
[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 + 1 | |
[fst (x1, x2) ] | = | x1 | |
[mark (x1) ] | = | 0 | |
[active (x1) ] | = | x1 | |
[0] | = | 2 | |
[nil] | = | 2 | |
[cons (x1, x2) ] | = | 2 x1 + 1 | |
[len (x1) ] | = | 2 x1 | |
[cons# (x1, x2) ] | = | x1 | |
[add (x1, x2) ] | = | 2 x1 | |
[s (x1) ] | = | x1 + 2 | |
[ok (x1) ] | = | x1 + 1 | |
[top (x1) ] | = | 0 | |
[proper (x1) ] | = | 2 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) ] | = | x1 + 2 | |
[fst (x1, x2) ] | = | x1 + 2 x2 + 2 | |
[mark (x1) ] | = | x1 + 1 | |
[active (x1) ] | = | 2 x1 | |
[0] | = | 0 | |
[nil] | = | 1 | |
[cons (x1, x2) ] | = | 2 x1 + 2 | |
[len (x1) ] | = | 2 x1 | |
[cons# (x1, x2) ] | = | 2 x1 | |
[add (x1, x2) ] | = | 2 x1 + 2 x2 + 3 | |
[s (x1) ] | = | 0 | |
[ok (x1) ] | = | 0 | |
[top (x1) ] | = | 0 | |
[proper (x1) ] | = | x1 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
none |
All dependency pairs have been removed.
fst#( X1 , mark( X2 ) ) | → | fst#( X1 , X2 ) |
fst#( mark( X1 ) , X2 ) | → | fst#( X1 , X2 ) |
fst#( ok( X1 ) , ok( X2 ) ) | → | fst#( X1 , X2 ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | 2 x1 + 3 | |
[fst (x1, x2) ] | = | x1 + 2 x2 | |
[mark (x1) ] | = | x1 + 1 | |
[active (x1) ] | = | 2 x1 | |
[0] | = | 2 | |
[nil] | = | 2 | |
[cons (x1, x2) ] | = | x1 + 1 | |
[len (x1) ] | = | 2 x1 | |
[fst# (x1, x2) ] | = | x1 | |
[add (x1, x2) ] | = | x1 + 2 x2 + 1 | |
[s (x1) ] | = | 0 | |
[ok (x1) ] | = | x1 | |
[top (x1) ] | = | 0 | |
[proper (x1) ] | = | 3 x1 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
fst#( X1 , mark( X2 ) ) | → | fst#( X1 , X2 ) |
fst#( ok( X1 ) , ok( X2 ) ) | → | fst#( X1 , X2 ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | x1 | |
[fst (x1, x2) ] | = | x1 + x2 | |
[mark (x1) ] | = | x1 + 1 | |
[active (x1) ] | = | 2 x1 + 1 | |
[0] | = | 0 | |
[nil] | = | 0 | |
[cons (x1, x2) ] | = | x1 | |
[len (x1) ] | = | x1 | |
[fst# (x1, x2) ] | = | 2 x1 | |
[add (x1, x2) ] | = | x1 + x2 | |
[s (x1) ] | = | 0 | |
[ok (x1) ] | = | 2 x1 | |
[top (x1) ] | = | 0 | |
[proper (x1) ] | = | 0 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
fst#( ok( X1 ) , ok( X2 ) ) | → | fst#( X1 , X2 ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | 2 x1 | |
[fst (x1, x2) ] | = | 2 x1 | |
[mark (x1) ] | = | 0 | |
[active (x1) ] | = | 2 x1 | |
[0] | = | 2 | |
[nil] | = | 2 | |
[cons (x1, x2) ] | = | 2 x1 | |
[len (x1) ] | = | x1 | |
[fst# (x1, x2) ] | = | 3 x1 + 3 x2 | |
[add (x1, x2) ] | = | 2 x1 | |
[s (x1) ] | = | 3 x1 + 2 | |
[ok (x1) ] | = | 2 x1 + 2 | |
[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.
from#( ok( X ) ) | → | from#( X ) |
from#( mark( X ) ) | → | from#( X ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | 2 x1 | |
[fst (x1, x2) ] | = | x1 + 1 | |
[mark (x1) ] | = | x1 | |
[active (x1) ] | = | 2 x1 | |
[0] | = | 3 | |
[from# (x1) ] | = | x1 | |
[nil] | = | 2 | |
[cons (x1, x2) ] | = | x1 | |
[len (x1) ] | = | 2 x1 | |
[add (x1, x2) ] | = | 3 x1 + x2 + 2 | |
[s (x1) ] | = | 2 x1 | |
[ok (x1) ] | = | x1 + 2 | |
[top (x1) ] | = | 0 | |
[proper (x1) ] | = | 2 x1 | |
[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) ] | = | 2 x1 + 2 | |
[fst (x1, x2) ] | = | x1 + 2 x2 | |
[mark (x1) ] | = | x1 + 1 | |
[active (x1) ] | = | 2 x1 | |
[0] | = | 3 | |
[from# (x1) ] | = | x1 | |
[nil] | = | 3 | |
[cons (x1, x2) ] | = | x1 | |
[len (x1) ] | = | 2 x1 + 2 | |
[add (x1, x2) ] | = | x1 + 2 x2 | |
[s (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 |
none |
All dependency pairs have been removed.
add#( X1 , mark( X2 ) ) | → | add#( X1 , X2 ) |
add#( mark( X1 ) , X2 ) | → | add#( X1 , X2 ) |
add#( ok( X1 ) , ok( X2 ) ) | → | add#( X1 , X2 ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | 2 x1 + 3 | |
[fst (x1, x2) ] | = | x1 + 2 x2 | |
[mark (x1) ] | = | x1 + 1 | |
[active (x1) ] | = | 2 x1 | |
[0] | = | 2 | |
[add# (x1, x2) ] | = | x1 | |
[nil] | = | 2 | |
[cons (x1, x2) ] | = | x1 + 1 | |
[len (x1) ] | = | 2 x1 | |
[add (x1, x2) ] | = | x1 + 2 x2 + 1 | |
[s (x1) ] | = | 0 | |
[ok (x1) ] | = | x1 | |
[top (x1) ] | = | 0 | |
[proper (x1) ] | = | 3 x1 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
add#( X1 , mark( X2 ) ) | → | add#( X1 , X2 ) |
add#( ok( X1 ) , ok( X2 ) ) | → | add#( X1 , X2 ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | x1 | |
[fst (x1, x2) ] | = | x1 + x2 | |
[mark (x1) ] | = | x1 + 1 | |
[active (x1) ] | = | 2 x1 + 1 | |
[0] | = | 0 | |
[add# (x1, x2) ] | = | 2 x1 | |
[nil] | = | 0 | |
[cons (x1, x2) ] | = | x1 | |
[len (x1) ] | = | x1 | |
[add (x1, x2) ] | = | x1 + x2 | |
[s (x1) ] | = | 0 | |
[ok (x1) ] | = | 2 x1 | |
[top (x1) ] | = | 0 | |
[proper (x1) ] | = | 0 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
add#( ok( X1 ) , ok( X2 ) ) | → | add#( X1 , X2 ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | 2 x1 | |
[fst (x1, x2) ] | = | 2 x1 | |
[mark (x1) ] | = | 0 | |
[active (x1) ] | = | 2 x1 | |
[0] | = | 2 | |
[add# (x1, x2) ] | = | 3 x1 + 3 x2 | |
[nil] | = | 2 | |
[cons (x1, x2) ] | = | 2 x1 | |
[len (x1) ] | = | x1 | |
[add (x1, x2) ] | = | 2 x1 | |
[s (x1) ] | = | 3 x1 + 2 | |
[ok (x1) ] | = | 2 x1 + 2 | |
[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.
len#( ok( X ) ) | → | len#( X ) |
len#( mark( X ) ) | → | len#( X ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | 2 x1 | |
[fst (x1, x2) ] | = | x1 + 1 | |
[mark (x1) ] | = | x1 | |
[active (x1) ] | = | 2 x1 | |
[0] | = | 3 | |
[len# (x1) ] | = | x1 | |
[nil] | = | 2 | |
[cons (x1, x2) ] | = | x1 | |
[len (x1) ] | = | 2 x1 | |
[add (x1, x2) ] | = | 3 x1 + x2 + 2 | |
[s (x1) ] | = | 2 x1 | |
[ok (x1) ] | = | x1 + 2 | |
[top (x1) ] | = | 0 | |
[proper (x1) ] | = | 2 x1 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
len#( mark( X ) ) | → | len#( X ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | 2 x1 + 2 | |
[fst (x1, x2) ] | = | x1 + 2 x2 | |
[mark (x1) ] | = | x1 + 1 | |
[active (x1) ] | = | 2 x1 | |
[0] | = | 3 | |
[len# (x1) ] | = | x1 | |
[nil] | = | 3 | |
[cons (x1, x2) ] | = | x1 | |
[len (x1) ] | = | 2 x1 + 2 | |
[add (x1, x2) ] | = | x1 + 2 x2 | |
[s (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 |
none |
All dependency pairs have been removed.
s#( ok( X ) ) | → | s#( X ) |
Linear polynomial interpretation over the naturals
[from (x1) ] | = | x1 | |
[fst (x1, x2) ] | = | x1 | |
[mark (x1) ] | = | 0 | |
[active (x1) ] | = | 2 x1 | |
[0] | = | 0 | |
[nil] | = | 0 | |
[cons (x1, x2) ] | = | x1 | |
[s# (x1) ] | = | 2 x1 | |
[len (x1) ] | = | x1 | |
[add (x1, x2) ] | = | x1 | |
[s (x1) ] | = | x1 | |
[ok (x1) ] | = | x1 + 1 | |
[top (x1) ] | = | 0 | |
[proper (x1) ] | = | 2 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
none |
All dependency pairs have been removed.